我有一张桌子,想检查是否存在满足一些简单条件的记录。我想知道哪个会更快:
if (select count(*) from ... where ...) > 0
或者
if exists (select top (1) from ... where ...)
.
我有一张桌子,想检查是否存在满足一些简单条件的记录。我想知道哪个会更快:
if (select count(*) from ... where ...) > 0
或者
if exists (select top (1) from ... where ...)
.