About 11,700,000 results
Open links in new tab
  1. SQL Server SELECT INTO @variable? - Stack Overflow

    Jan 8, 2015 · You cannot SELECT .. INTO .. a TABLE VARIABLE. The best you can do is create it first, then insert into it. Your 2nd snippet has to be DECLARE @TempCustomer TABLE ( …

  2. How do I fix "Undefined variable" error in PHP? - Stack Overflow

    Dec 5, 2013 · There are two cases of using a variable globally: Using a single copy of that variable and modify it from anywhere i.e. modification from within a function or outside i.e. in …

  3. Defining and using a variable in batch file - Stack Overflow

    370 The spaces are significant. You created a variable named 'location ' with a value of ' "bob"'. Note - enclosing single quotes were added to show location of space. If you want quotes in …

  4. What does the @ symbol before a variable name mean in C#?

    Mar 18, 2016 · I understand that the @ symbol can be used before a string literal to change how the compiler parses the string. But what does it mean when a variable name is prefixed with …

  5. How can I globally set the PATH environment variable in VS Code?

    You can run VS Code from an environment that already contains the PATH variable as you want it, since most Operating Systems will make child processes inherit the environment of their …

  6. Declaring vs Initializing a variable? - Stack Overflow

    Jul 30, 2015 · A variable declaration (e.g., var foo) causes that variable to be created as soon as the "lexical environment" is instantiated. For example, if that variable were defined within a …

  7. python - What do * and ** before a variable name mean in a …

    What do * and ** before a variable name mean in a function signature? [duplicate] Asked 13 years ago Modified 2 years, 5 months ago Viewed 133k times

  8. How to set variable from a SQL query? - Stack Overflow

    1 My use case was that I wanted to set a variable to a string. All the other answers here show how to set a variable using the output of a SELECT statement. Here's how to do it with a simple …

  9. How do I use extern to share variables between source files?

    The clean, reliable way to declare and define global variables is to use a header file to contain an extern declaration of the variable. The header is included by the one source file that defines …

  10. Declaring variable workbook / Worksheet vba - Stack Overflow

    Sep 25, 2014 · Declaring variable workbook / Worksheet vba Asked 10 years, 9 months ago Modified 1 year, 11 months ago Viewed 460k times