Skip to content

Instantly share code, notes, and snippets.

View Lu1815's full-sized avatar

Luis Felipe CE Lu1815

View GitHub Profile
@akkidas
akkidas / guid-sql-server.sql
Created April 13, 2016 17:59
Generate New Guid (uniqueidentifier) in SQL Server
-- If you want to generate a new Guid (uniqueidentifier) in SQL server the you can simply use the NEWID() function.
SELECT NEWID()
GO
-- This will return a new random uniqueidentifier e.g.
E75B92A3-3299-4407-A913-C5CA196B3CAB
To select this Guid in in a variable
--assign uniqueidentifier in a variable
DECLARE @EmployeeID uniqueidentifier