假设我有这样的查询:
Select col1,
col2,
(select count(smthng) from table2) as 'records'
from table1
我想将它过滤为“记录”列不为空。
我不能做到这一点:
Select col1,
col2,
(select count(smthng) from table2) as 'records'
from table1
where records is not null
我想出的最好的方法是将此结果集写入表值参数并对该结果集进行单独的查询。有任何想法吗?