これを機能させるための正しい構文を見つけるのに苦労していますか?
ID と色の列を含むテーブルがあり、特定の色のすべての 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