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.
我需要复制一个 MySQL 表,其中包含默认为 CURRENT_TIMESTAMP 的时间戳类型的日期字段。 下面的查询适用于所有数据,但不会复制我需要保留的日期字段。
insert into table1 select * from table2 order by record-Id.
提前致谢。