Skip to content

Instantly share code, notes, and snippets.

@BlackIQ
Created June 24, 2023 08:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save BlackIQ/bbf0cb1d45866daa2e22bc8b9e1c55ba to your computer and use it in GitHub Desktop.
Save BlackIQ/bbf0cb1d45866daa2e22bc8b9e1c55ba to your computer and use it in GitHub Desktop.
Happy Birthday
CREATE PROCEDURE BirthdayMessage
@Name VARCHAR(50)
AS
BEGIN
DECLARE @Message VARCHAR(100);
SET @Message = CONCAT('Happy birthday, ', @Name, ' ! Enjoy your special day!')
SELECT @Message AS Message;
END;
EXEC BirthdayMessage 'John';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment