能不能在查询的时候 增加一列显示表中id为48的个数
select a.* ,b.counts from A表 a
left join (select count(case when id=48 then 1 else null end ) counts from A表) b on
1=1
啥数据库:SqlServer?oracle?mysql?