Skip to content

Instantly share code, notes, and snippets.

@crowcoder
Created October 15, 2016 15:09
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/6373c40aa83436a221ac00161d1e92c1 to your computer and use it in GitHub Desktop.
Save crowcoder/6373c40aa83436a221ac00161d1e92c1 to your computer and use it in GitHub Desktop.
CREATE PROCEDURE [dbo].[usp_Input_Has_Default]
@param1 varchar(50) = 'I''m a default value'
AS
SELECT @param1;
RETURN 0;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment