我正在将uniqueidentifier插入如下所示的存储过程中

00000000-0000-0000-0000-000000000000

这似乎很简单,但是如何识别这是空白的uniqueidentifier

如果我得到这样的值DDB72E0C-FC43-4C34-A924-741445153021,我想做X

如果我得到这样的值00000000-0000-0000-0000-000000000000,我会执行Y

还有一种更优雅的方法来计算零吗?

提前致谢

最佳答案

相比于

cast(cast(0 as binary) as uniqueidentifier)


10-04 19:46