SqlServer 判断 GUID 是否为空
--第一种方法 写死 -- 容易看花眼 建议直接复制 where FID != '00000000-0000-0000-0000-000000000000' --第二种方法 写语句 where FID != (select cast(cast(0 as binary) as uniqueidentifier))
--第一种方法 写死 -- 容易看花眼 建议直接复制 where FID != '00000000-0000-0000-0000-000000000000' --第二种方法 写语句 where FID != (select cast(cast(0 as binary) as uniqueidentifier))
