Answers for "sql declare"

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
1

declare variables sql

--      name         type               value
DECLARE @PersonId AS UNIQUEIDENTIFIER = 'ddb7bfff-9ce8-4651-6973-08d9a46c90b6'
Posted by: Guest on November-10-2021
1

what does declare do in sql

-- MySQL

DECLARE variable_name datatype(size) [DEFAULT default_value];
-- Declaring a variable without specifying a default value will result it
-- in being a null value.
-- Declare is what allows us to create a variable
Posted by: Guest on July-22-2020
1

how to declare a variable in sql

DECLARE @COURSE_ID AS INT, @COURSE_NAME VARCHAR (10);
Posted by: Guest on April-07-2020

Code answers related to "SQL"

Browse Popular Code Answers by Language