Expand Minimize
This topic has not yet been rated - Rate this topic

Creates a unique value of type uniqueidentifier.



NEWID ( )

uniqueidentifier

The following example returns a uniqueidentifier value that is added to a table by using the NEWID function.

CREATE TABLE myTable(GuidCol uniqueidentifier, NumCol int)
INSERT INTO myTable Values(NEWID(), 4)
SELECT * FROM myTable
Did you find this helpful?
(1500 characters remaining)
© 2013 Microsoft. All rights reserved.