将一个表中的某个字段插入到另一个表的字段,如何写SQL语句
插入的话: insert into a(col) select col from b; 更新的话: update a set col=select col from b where a.id=b.id;
平淡中储蓄成长
相关文章
发表评论
评论列表
- 这篇文章还没有收到评论,赶紧来抢沙发吧~
插入的话: insert into a(col) select col from b; 更新的话: update a set col=select col from b where a.id=b.id;