INF: Assignment of Empty Results Set Does Not Set VariableID: Q107561
|
If a local variable is set by the results of a SELECT statement which returns no rows, the value currently stored in the local variable will remain unchanged.
An example of this behavior would be the following statement:
declare @var int
select @var = 5
select @var = dbid from sysdatabases where name = "does not exist"
select @var
Additional query words: 4.20 Transact-SQL
Keywords : kbother SSrvTrans
Version : 4.2
Platform : OS/2 WINDOWS
Issue type :
Last Reviewed: March 18, 1999