I am currently improving my knowledge of SQL. Currently I am trying to declare a variable by getting a value from a select statement. First Question: Is this possible?
Second Question: I have this SQL attempting to do the above. My intension is to set @version_group
to whatever version_replace
holds, which is always a single row, single column result.
DECLARE @version_group int
SET @version_group = SELECT version_replace FROM users WHERE id=@sid
How can I correct this to valid syntax? (assuming it's possible)
How can I correct this to valid syntex? (assuming it's possible)
The syntax you want is as follows, it needs one piece of info that you don't have in your original effort though (the FROM clause) :
DECLARE @version_group int
select @version_group = version_replace from (you're missing this from your query) where id=@sid
It's possible. Just do (SQL 2008):
declare @version_group as int=
(SELECT version_replace
FROM users
WHERE id=@sid);
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With