Created
June 26, 2014 08:57
-
-
Save js1972/07fc4ae7647dda1d2135 to your computer and use it in GitHub Desktop.
Create a simple SQLServer procedure
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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