vote up 2 vote down star

I'm working on a stored proc that executes some dynamic sql. Here's the example I found on 4GuysFromRolla.com

CREATE PROCEDURE MyProc
  (@TableName varchar(255),
   @FirstName varchar(50),
   @LastName varchar(50))
AS

    -- Create a variable @SQLStatement
    DECLARE @SQLStatement varchar(255)

    -- Enter the dynamic SQL statement into the
    -- variable @SQLStatement
    SELECT @SQLStatement = "SELECT * FROM " +
                   @TableName + "WHERE FirstName = '"
                   + @FirstName + "' AND LastName = '"
                   + @LastName + "'"

    -- Execute the SQL statement
    EXEC(@SQLStatement)

If you notice, they are using the keyword SELECT intead of SET. I didn't know you could do this. Can someone explain to me the differences between the 2? I always thought SELECT was simply for selecting records.

flag

69% accept rate
1  
Duplicate of stackoverflow.com/questions/866767/… – shahkalpesh Jun 23 at 19:31
Not exactly a duplicate. The other question is asking about performance. I was asking about the keyword language difference – Micah Jun 23 at 20:15

5 Answers

vote up 6 vote down check

SELECT is ANSI, SET @LocalVar is MS T-SQL

SELECT allows multiple assignents: eg SELECT @foo = 1, @bar = 2

link|flag
Your first point is contradicted by many sources in @breitak67's answer (stackoverflow.com/questions/1034634/…) – Michael Haren Jun 24 at 15:03
Damn! I'm getting old. However, the SELECT is also in ANSI now, I think. – gbn Jun 24 at 17:27
Interesting that Sybase does not mention SET @var infocenter.sybase.com/help/index.jsp?topic=/… – gbn Jun 24 at 17:32
vote up 0 vote down

Select can also be used to get the variable assignment from a select statement (assuming the statement only returns one record)

Select @myvariable = myfield from my table where id = 1

link|flag
vote up 0 vote down

SELECTs may be faster if you need to assign multiple values:

http://sqlblog.com/blogs/alexander_kuznetsov/archive/2009/01/25/defensive-database-programming-set-vs-select.aspx

link|flag
Given you still have to write the values into memory, I doubt it. It's still 2 assignment whether it's 2xSET or 1xSELECT. – gbn Jun 24 at 4:18
gbn, I provided benchmarks. you can run benchmarks and see for yourself – AlexKuznetsov Jun 24 at 13:23
vote up 3 vote down

Basically, SET is SQL ANSI standard for settings variables, SELECT is not. SET works only for single assignments, SELECT can do multiple assignments. Rather than write a long explanation that is well summarized in many places on the net:

ryan farley blog

tony rogerson

stackoverflow

link|flag
vote up 2 vote down

Select allows multiple assignments.

EDIT you beat me by 44 seconds

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.