作业帮 > 综合 > 作业

一个表insert into可以用where吗?

来源:学生作业帮 编辑:作业帮 分类:综合作业 时间:2024/11/06 07:49:48
一个表insert into可以用where吗?
两列
循环读取第一列的值a,计算后分别插入第二列
insert into table(column2) values(result) where column1=a
这样insert into 后面可以带where吗?
insert 是没有才能插入啊.
你where 就是说里面本来就有数据了.
那你还insert干什么呢?
有数据你就修改嘛.update table set column2=aaa where column1=a