Skip to content

Instantly share code, notes, and snippets.

@niktho
Created February 26, 2019 19:19
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 niktho/1ca9d03f667e1886297f7f136e6d9b3c to your computer and use it in GitHub Desktop.
Save niktho/1ca9d03f667e1886297f7f136e6d9b3c to your computer and use it in GitHub Desktop.
CREATE PROCEDURE dbo.InsertCustomer
(
@FirstName NVARCHAR(255),
@MiddleName NVARCHAR(255),
@LastName NVARCHAR(255),
@Age INT
)
AS
BEGIN
SET NOCOUNT ON;
SET NOCOUNT OFF;
END
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment