select B.社区编码,(select count(A.社区编码) from A where A.社区编码=B.社区编码)from B group by B.社区编码
在要统计B表中每一个社区编码,在A区社区编码中出现了多少次,并放在该社区编码的后面作为C表以:(社区编码,数量)的格式,请问该如何写语句?
select b.社区编码,count(*)from a,bwhere a.社区编码(+)=b.社区编码 group by b.社区编码;