Skip to content

Instantly share code, notes, and snippets.

@js1972
Created June 26, 2014 08:57
Show Gist options
  • Save js1972/07fc4ae7647dda1d2135 to your computer and use it in GitHub Desktop.
Save js1972/07fc4ae7647dda1d2135 to your computer and use it in GitHub Desktop.
Create a simple SQLServer procedure
CREATE PROCEDURE PersonsListByPostcode @pc nvarchar(255)
AS
SELECT *
FROM T_PERSON
WHERE postcode = @pc
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment