About 40,800,000 results
Open links in new tab
  1. 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 …

  2. 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 …

  3. Set variable from another variable in Jinja - Stack Overflow

    Oct 2, 2024 · I would like to know how can I set a variable with another variable in Jinja. I have got a submenu and I would like to show which link is active. I tried this: {% set active_link = …

  4. 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 …

  5. 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 ( …

  6. SELECT INTO a table variable in T-SQL - Stack Overflow

    Oct 1, 2010 · Got a complex SELECT query, from which I would like to insert all rows into a table variable, but T-SQL doesn't allow it. Along the same lines, you cannot use a table variable with …

  7. How to keep one variable constant with other one changing with …

    How to keep one variable constant with other one changing with row in excel Asked 15 years, 5 months ago Modified 2 years, 11 months ago Viewed 913k times

  8. Define variable to use with IN operator (T-SQL) - Stack Overflow

    Define variable to use with IN operator (T-SQL) Asked 15 years, 8 months ago Modified 2 years, 10 months ago Viewed 266k times

  9. How do I set a variable to the output of a command in Bash?

    As an aside, capturing output into a variable just so you can then echo the variable is a useless use of echo, and a useless use of variables.

  10. How to set command's output as a variable in a batch file

    Jun 15, 2011 · None of the answers seems to work for me. My command is "openssl dgst -sha384 -binary %1% | openssl base64 -A" and I wish the string output to be stored in a variable in a …