select id, (col1+col2+ col3)/3 as avgVal from T1 where id=123
这个要用到子查询的,看你写在哪一行的avg字段了,加个条件过滤下就好了
update test1 set avg=(select AVG(count) FROM test1 WHERE id<=501 && id>=497) where id='你想写入的id所在的行'
欢迎分享,转载请注明来源:内存溢出
select id, (col1+col2+ col3)/3 as avgVal from T1 where id=123
这个要用到子查询的,看你写在哪一行的avg字段了,加个条件过滤下就好了
update test1 set avg=(select AVG(count) FROM test1 WHERE id<=501 && id>=497) where id='你想写入的id所在的行'
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)