Skip to content

Instantly share code, notes, and snippets.

@Saanch
Created April 15, 2015 04:09
Show Gist options
  • Save Saanch/94235c00c61c27c16a1d to your computer and use it in GitHub Desktop.
Save Saanch/94235c00c61c27c16a1d to your computer and use it in GitHub Desktop.
Generate GUID at SQL Server side
DECLARE @myid uniqueidentifier
SET @myid = NEWID()
PRINT 'Value of @myid is: '+ CONVERT(varchar(255), @myid)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment