If we want to generate a new
Guid(uniqueidentifier) in SQL Server the we can simply use the
NEWID() function.
For Example SELECT NEWID()
-- This will return a new random uniqueidentifier as
E75B92A3-3299-4407-A913-C5CA196B3CAB To select this Guid in in a variable --assign uniqueidentifier in a variable
DECLARE @EmployeeID uniqueidentifier
SET @EmployeeID = NEWID()