If NEW_TABLE already exists then ...
insert into new_table select * from old_table
/
If you want to create NEW_TABLE based on the records in OLD_TABLE ...
create table new_table as select * from old_table
/SELECT INTO using Oracle
最新推荐文章于 2025-04-17 23:56:43 发布
本文介绍如何将旧表中的数据迁移到新创建的表中,包括直接插入数据和基于旧表记录创建新表的方法。
1258

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



