We create our variables like this, initializing them on the same line:
DECLARE @this_is_a_variable_with_a_long_name int; SET @this_is_a_variable_with_a_long_name = 0
Is there any way to have SQL Prompt recognize the variable name after the semicolon is typed so that we can use it in the set statement? Otherwise we have to either retype the variable name or cut and paste it. Thanks.
DECLARE @this_is_a_variable_with_a_long_name int; SET @this_is_a_variable_with_a_long_name = 0
Is there any way to have SQL Prompt recognize the variable name after the semicolon is typed so that we can use it in the set statement? Otherwise we have to either retype the variable name or cut and paste it. Thanks.