Skip to content

Instantly share code, notes, and snippets.

@MarkPryceMaherMSFT
Last active April 1, 2022 16:36
Show Gist options
  • Save MarkPryceMaherMSFT/dba34a776879ea133128b76cdcd1cf61 to your computer and use it in GitHub Desktop.
Save MarkPryceMaherMSFT/dba34a776879ea133128b76cdcd1cf61 to your computer and use it in GitHub Desktop.
-- simple function to wrap try_parse
create FUNCTION dbo.check_my_number (@value varchar(255))
RETURNS bigint
as
BEGIN
declare @rt bigint;
set @rt = try_parse(@value as bigint)
return @rt;
END;
@MarkPryceMaherMSFT
Copy link
Author

inital gist

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment