用sql server的sql语句算一个empty GUID
在C#中得到一个empty GUID的方法是:
Guid id= Guid.Empty;
那么在SQL Server Management Studio中怎样得到一个empty GUID呢?
方法有两种:
第一种方法比较笨,就是写一个全是0 的guid字符串(这种方法容易出错):
id= '00000000-0000-0000-0000-000000000000'
第二种方法(推荐):
select cast(cast(0 as binary) as uniqueidentifier)