G
gymmy
Unregistered / Unconfirmed
GUEST, unregistred user!
各位,我有下面一个table
id cost
1
2 2.3
3 3.4
4 4.5
5 3.9
6 2.9
现在我用select sum(cost) c from table
我的目的是把2.3+3.4+4.5+3.9+2.9之和提交到id=1的cost里去。请问接下来的SQL语句怎么写
可不可以'update table set cost=c'??
id cost
1
2 2.3
3 3.4
4 4.5
5 3.9
6 2.9
现在我用select sum(cost) c from table
我的目的是把2.3+3.4+4.5+3.9+2.9之和提交到id=1的cost里去。请问接下来的SQL语句怎么写
可不可以'update table set cost=c'??