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
我正在尝试从另一个表中获取字段和相关计数,但上述查询不起作用。查询涉及两个不同的表(apparea,applications)。上面的查询有错误,我正在寻找实现此目的的替代方法。