Created
August 25, 2017 22:12
-
-
Save bertwagner/55615594b40f42ca3855d3b61510a92a to your computer and use it in GitHub Desktop.
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 dbo.sp_GetFullNameSafe | |
@ParmUserName varchar(100) | |
AS | |
BEGIN | |
SELECT FullName FROM dbo.RegisteredUser WHERE UserName = @ParmUserName | |
END |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment