我无法找到正确的语法来完成这项工作?
我有一个包含 id 和 color 列的表格,我想打印出特定颜色的所有 id。
if exists(select id from mytable where color = 'red')
print id
if exists(select id from mytable where color = 'red')
print SCOPE_IDENTITY() --which won't work because i'm using select rather than insert