Last active
October 15, 2016 16:22
-
-
Save crowcoder/c94efe7d8f270024d17155f649bfca10 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 [dbo].[usp_Output_No_Default] | |
@param1 VARCHAR(50) OUTPUT | |
AS | |
SELECT @param1; | |
SET @param1 = 'changed by procedure'; | |
RETURN 0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment