Answers for "declare a variable in sql server"

SQL
19

sql declare variable

-- Declare the variable to be used.
DECLARE @MyCounter int;

-- Initialize the variable.
SET @MyCounter = 0;
Posted by: Guest on March-03-2020
0

declare variable in stored procedure in sql server

DECLARE 
    @product_name VARCHAR(MAX),
    @list_price DECIMAL(10,2);
Posted by: Guest on July-09-2020

Code answers related to "declare a variable in sql server"

Code answers related to "SQL"

Browse Popular Code Answers by Language