Created
April 13, 2016 17:59
-
-
Save akkidas/8c1afa5675fdf9abe115eb2cdc47fee8 to your computer and use it in GitHub Desktop.
Generate New Guid (uniqueidentifier) in SQL Server
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- 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
Thank you!