如题:
语句1:
select m.mEmail,a.aAuditor from Members as m,taskApply as a where a.aAuditor=m.mName
语句2:
select count(*) from taskApply where aAuditor is not null group by aAuditor
4 回答
守着星空守着你
TA贡献1799条经验 获得超8个赞
select m.mEmail,a.aAuditor,count(*) as val from Members as m,taskApply as a where a.aAuditor=m.mName
where aAuditor is not null group by m.mEmail,a.aAuditor
大致语句应该是这样的,没有调试过,按照这个方向去试一下吧!
- 4 回答
- 0 关注
- 563 浏览
添加回答
举报
0/150
提交
取消