About 676,000 results
Open links in new tab
  1. How to set variable from a SQL query? - Stack Overflow

    SET @ModelID = (SELECT m.modelid FROM MODELS m WHERE m.areaid = 'South Coast'); Then you can use SELECT to show the value of @ModelID or use the variable into your code.

  2. INSERT INTO SET syntax in SQL Server - Stack Overflow

    Aug 7, 2011 · I come from mySQL to SQL Server. Doesn't the following syntax work in SQL Server? INSERT INTO table SET fil1="234", fil2="324" Is there an comparable statement in SQL Server?

  3. sql - MySQL INSERT INTO table VALUES.. vs INSERT INTO table SET

    May 14, 2009 · SET syntax will work, whereas the other one will. But in most practical cases, you're looping through a set of records to do inserts anyhow, though there could be some cases where …

  4. sql - 1 SET statement for multiple variables like declare statement ...

    Aug 18, 2014 · Is there a way to set all variables with one set statment, like you can with a declare statement? For example: Declare @Test VARCHAR(10), @Test2 VARCHAR(10), @T...

  5. sql - SET versus SELECT when assigning variables? - Stack Overflow

    Oct 15, 2010 · What are the differences between the SET and SELECT statements when assigning variables in T-SQL?

  6. sql - Declare a variable in a PostgreSQL query - Stack Overflow

    How do I declare a variable for use in a PostgreSQL 8.3 query? In MS SQL Server I can do this: DECLARE @myvar INT; SET @myvar = 5/ SELECT * FROM somewhere WHERE something = …

  7. How do I declare and assign a variable on a single line in SQL

    DECLARE @var nvarchar(max) = '"My Name is Luca" is a great song'; The second example in the MSDN page on DECLARE shows the correct syntax.

  8. Creating stored procedure with declare and set variables

    Feb 11, 2012 · I am creating one stored procedure where only value has to pass and I have to retrieve multiple values from multiple tables. I tried to do like this but its showing errors like Incorrect Syntax ...

  9. sql server - Update multiple columns in SQL - Stack Overflow

    Jan 31, 2012 · 26 The Update table1 set (a,b,c) = (select x,y,x) syntax is an example of the use of row-value constructors, Oracle supports this, MSSQL does not. (Connect item)

  10. How to declare variable and use it in the same Oracle SQL script ...

    The question is about to use a variable in a script means to me it will be used in SQL*Plus. The problem is you missed the quotes and Oracle can not parse the value to number.