Skip to content

Instantly share code, notes, and snippets.

@Ezeji
Forked from akkidas/guid-sql-server.sql
Created September 20, 2021 21:21
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Ezeji/721e9d5b394ace3b969843b7235e765f to your computer and use it in GitHub Desktop.
Save Ezeji/721e9d5b394ace3b969843b7235e765f 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