Reputation: 5
I am new to T-SQL. What is the meaning of the following statement?
BEGIN
UPDATE table_name
SET a = ISNULL(@f_flag,0)
END
Upvotes: 0
Views: 40
Reputation: 867
*Note: that there is no "WHERE" clause here, therefore, all rows in the table will be updated.
Upvotes: 3