mysql怎么把一个表的所有数据复制到另一张表

2025-06-23 00:45:20
推荐回答(1个)
回答1:

另一张表已经存在还是不存在 不存在可以
select * into 目标表 from 原表
另一张表存在
insert into 目标表 select * from 原表;