Answers for "sql create and set variable"

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

Assign value to var in SQL

DECLARE @EmpIDVariable int;
SELECT @EmpIDVariable = MAX(EmployeeID)
FROM HumanResources.Employee;
Posted by: Guest on October-01-2020

Code answers related to "SQL"

Browse Popular Code Answers by Language