Skip to content

Instantly share code, notes, and snippets.

@i-amolo
Forked from akkidas/guid-sql-server.sql
Created August 15, 2023 12:39
Show Gist options
  • Save i-amolo/2a762ca6f715fba12c5d3c0fdf8ddb6e to your computer and use it in GitHub Desktop.
Save i-amolo/2a762ca6f715fba12c5d3c0fdf8ddb6e to your computer and use it in GitHub Desktop.
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
SET @EmployeeID = NEWID()
You can directly use this with INSERT statement to insert new row in table.
-- Inserting data in Employees table.
INSERT INTO Employees
(EmployeeID, Name, Phone)
VALUES
(NEWID(), 'John Kris', '99-99999')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment