建两个单独的表A,B
把原表彪部分字段对应数据放入A,其他字段放入Blz到底想问什么

解决方案 »

  1.   

    create table tab1
    as
    select 一些字段 from oldtabcreate table tab2
    as
    select 另一些字段 from oldtab记得要建立连接两个新表的主键字段。
      

  2.   

    记得要建立连接两个新表的主键字段。可以是原来表的rownum或rowid。
      

  3.   

    create table tab1
    as
    select 主键,一些字段 from oldtabcreate table tab2
    as
    select 主键,另一些字段 from oldtab再在建好的表上建主键
      

  4.   

    出现:
    ERROR 位于第 1 行:
    ORA-00997: 非法使用 LONG 数据类型不能把long raw字段分出来吗?
      

  5.   

    create table tab1
    as
    select 一些字段 from oldtabcreate table tab2
    as
    select 另一些字段 from oldtab记得要建立连接两个新表的主键字段。
      

  6.   

    create table tab1
    as
    select 一些字段 from oldtab
    (此表不包含long字段)然后将原表不需要的字段删除(就包含long字段了)