Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 2 个不同的数据库中有 1 个表
数据库 1 row1 我 row2 将 row3 飞 row4 高
Database2 row1 你 row2 会 row3 帮助 row4 我
我在 database2 中想要的是覆盖所有列数据并替换为 database1 持有的内容。 对 DATABSE 2 的期望结果:
row1 我 row2 会 row3 飞 row4 高
在我真正的问题中,我有超过 30 列,我正在寻找类似的东西来插入所有
试试这个方法:
delete from db2.tab go insert into db2.tab select * from db1.tab