SELECT area_id,
area_name,
(select count(*) from applications
where claims_status=1 and
center_name=c.area_id) as cont
FROM apparea c where cont<>0
我試圖從anothere表中獲取字段和相關計數,但上面的查詢不起作用。查詢涉及兩個不同的表格(apparea,應用程序)。上述查詢有錯誤,我正在尋找替代方法來實現這一點。MySQL查詢 - WHERE子句執行時可能還沒有確定where子句列值的未知列
你得到什麼錯誤? – 2013-03-06 10:38:28
'where子句'中的未知列'cont'。 – user1854007 2013-03-06 10:39:16