我希望通過在內部查詢 選擇這些提示錯誤修改數據並計算其中的一個修改.. ..選擇從嵌套查詢T-SQL
select count(cvs) from
(
select
cvs,
(case Citycode when 123 then 'test' else 'other' end) as CityName ,
(case ProductCode when '000' then 'test3' when 'ss' then 'xtr' else 'ddd' end) as CardName
from Applications
)
什麼錯誤? – JNK
如果你只關心計數,你爲什麼選擇所有其他數據?您不是分組或彙總任何子查詢數據,那麼爲什麼不選擇沒有子查詢的計數呢? –
也許你錯過的只是一個別名。 '選擇計數(*)從(...)A' – YetAnotherUser