vote up 1 vote down star

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!

flag

I'm starting to wonder about your name, Mr. Database – DOK Oct 21 '08 at 20:10
My middle name is "what's a" :-] – MrDatabase Oct 21 '08 at 20:12

4 Answers

vote up 3 vote down check

It's:

DECLARE @MyVariable INT
SET @MyVariable = 8
link|flag
vote up 1 vote down
declare @myvar int

select @myvar = 8
link|flag
vote up 3 vote down
declare @myvar int

Set @myvar = 8

select * from mytable where id > @myvar
link|flag
vote up 0 vote down

To clarify: both SET and SELECT work, but SET is the ANSI standard. However, if you're setting multiple values at once, then

SET @one = 1
SET @two = 2

will be very slightly slower than

SELECT @one = 1, @two = 2

What you gain in speed may well be offset by readability and clarity, however.

link|flag

Your Answer

Get an OpenID
or

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