现有三个表。
person 表
id username name thename
1 aaaa a小组 f
2 bbbb a小组 f
3 aaaa b小组 f
4 bbbb a小组 f
5 aaaa a小组 f
6 bbbb a小组 f
业绩表
id userid money
1 2 10000
2 3 200
2 4 600
2 5 100
要求结果为显示所有人员的业绩(如果没有业绩则显示为0)并按业绩排序
现有三个表。
person 表
id username name thename
1 aaaa a小组 f
2 bbbb a小组 f
3 aaaa b小组 f
4 bbbb a小组 f
5 aaaa a小组 f
6 bbbb a小组 f
业绩表
id userid money
1 2 10000
2 3 200
2 4 600
2 5 100
要求结果为显示所有人员的业绩(如果没有业绩则显示为0)并按业绩排序
SELECt person.name,sum(业绩表.money) as 业绩 from 业绩表,person where 业绩表.userid=person.id
group by person.name order by 业绩