SQL
BEGIN
-- Declare a variable to store the user's name
DECLARE @UserName VARCHAR(50);
-- Assign your name to the variable
SET @UserName = 'Lotis Sigue';
-- Print a personalized welcome message
PRINT 'Welcome, ' + @UserName + '!';
END
No answers yet!
10 months ago by Lotis Sigue