子句子查詢語句比方說,我有這樣的查詢:凡在選擇
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
,我想出了是寫這個結果集的表值參數,並且對結果集是一個單獨的查詢最好。有任何想法嗎?
@RichardTheKiwi您的查詢是完美的,但我編輯它做得更短。選擇X. * from(選擇col1,col2,(select ..... from table2)作爲table1)中的記錄X其中記錄不爲空; –