I have a simple query like this:
select * from mytable where id > 8
I want to make the 8 a variable. There's some syntax like
declare @myvar int
myvar = 8
but I don't know the exact syntax.
What is it?
Thanks!
|
|
I have a simple query like this:
I want to make the 8 a variable. There's some syntax like
but I don't know the exact syntax. What is it? Thanks!
|
||||
|
|
|
It's:
|
||
|
|
|
|
|
||
|
|
|
|
|
||
|
|
|
|
To clarify: both SET and SELECT work, but SET is the ANSI standard. However, if you're setting multiple values at once, then
will be very slightly slower than
What you gain in speed may well be offset by readability and clarity, however. |
||
|
|