Sql Server:理解uniqueidentifier类型和NEWID()

 

Sql Server:理解uniqueidentifier类型和NEWID()


uniqueidentifier是全局唯一标识符 (GUID)
NEWID()返回类型为uniqueidentifier
SQL SERVER联机帮助中的例子:
declare @myid uniqueidentifier
set @myid=newid()
print 'Value of @myid is '+cast(@myid as varchar(255))
每次运行以上程序返回不同的uniqueidentifier


NEWID()另外一个应用是在Select出记录时随即选出N条记录
比如:Select  top 5 * from yourtable order by newid()
这样就能从yourtable表中每次随机地选出5条记录,这对于随机显示新闻的地方比较有用

你可能感兴趣的:(Sql Server:理解uniqueidentifier类型和NEWID())