相关文章推荐
大方的铁板烧  ·  animation - Loading ...·  1 年前    · 
开朗的卡布奇诺  ·  RSocket - iT ...·  1 年前    · 

那么在SQL Server Management Studio中怎样得到一个empty GUID呢?

方法有两种:

第一种方法比较笨,就是写一个全是0 的guid字符串(这种方法容易出错):

id= '00000000-0000-0000-0000-000000000000'

第二种方法(推荐):

select cast(cast(0 as binary) as uniqueidentifier)