我试图在sql中使用exists关键字,但是我无法确定使用exists来查看是否存在记录的正确语法.
我想要下面的东西
If ( exist (select id * from table where Id = id ) ) { }
if exists (select * from [dbo].[table] where id= [the id you want to check] ) select 'True' else select 'False' return