全部博文(788)
分类:
2009-02-19 17:03:24
select sum(field3) as sumfield3 from 表2 group by mid
select id,sum_id=(select sum(field3) from table2 where table1.id=mid)
from table1
group by id
id和mid是关联的吗?先写个视图: select a.id,a.field2,b.field3 from table1 a left join
table2 b on a.id=b.mid,然后从这个视图分组查询就是了
jimcute() 你的方法可能不是很完美哦~
Nwing(BeyondNw)
thank
你的行得通,呵呵,努力中~~
wzxjh2000()
你的应该是可以的,多谢各位啦~~~