九鼎烹吧 关注:11贴子:645
  • 1回复贴,共1

如何在Oracle中复制表结构和表数据 【转载】

只看楼主收藏回复

装'X'者死于各种非命!!!!
怀才就像怀孕,时间久了才能让人看出来。
---------by玲珑少年


IP属地:北京1楼2016-04-06 09:18回复
    1. 复制表结构及其数据:
    create table table_name_new as select * from table_name_old
    2. 只复制表结构:
    create table table_name_new as select * from table_name_old where 1=2;
    或者:
    create table table_name_new like table_name_old
    3. 只复制表数据:
    如果两个表结构一样:
    insert into table_name_new select * from table_name_old
    如果两个表结构不一样:
    insert into table_name_new(column1,column2...) select column1,column2... from table_name_old
    pasting


    IP属地:北京2楼2016-04-06 09:18
    回复