1. Copy records from table A to table B
insert into tableA
select * from table B where {conditions}
本文介绍了一种从表A复制记录到表B的方法,并反向从表B插入数据回表A的过程。具体操作包括使用SQL语句进行数据选择及插入。
1. Copy records from table A to table B
insert into tableA
select * from table B where {conditions}

被折叠的 条评论
为什么被折叠?