Skip to content

Instantly share code, notes, and snippets.

@crowcoder
Last active October 15, 2016 16:22
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 crowcoder/c94efe7d8f270024d17155f649bfca10 to your computer and use it in GitHub Desktop.
Save crowcoder/c94efe7d8f270024d17155f649bfca10 to your computer and use it in GitHub Desktop.
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