An alternative title might be: Check for existence of multiple rows?
Using a combination of SQL and C# I want a method to return true if all products in a list exist
You can use a SELECT CASE statement like so:
select case when EXISTS ( select 1 from where ) then TRUE else FALSE end It returns TRUE when your query in the parents exists. 0 讨论(0) 查看其它14个回答 发布评论: 提交评论 加载中... 验证码 看不清? 提交回复 热议问题
It returns TRUE when your query in the parents exists.
TRUE