本帖最后由 student_2008 于 2012-07-13 11:40:06 编辑

解决方案 »

  1.   

    用where not exists判断下不就可以了,还有你两个表怎么是完全一样的?
      

  2.   

    造数据?
    create sequence ID_SEQ……
      

  3.   

    这个是一张表 在查询的时候把ID 用新的sequence替换。 
      

  4.   

    把table1从新复制一份为table2
    在table2表中把所有数据ID字段+count(table1)
    再把table2中数据insert进table1中
      

  5.   

    create table tttt
    as select * from test.EVENT_APP_ITEM;update tttt set id=id*10000;insert into test.EVENT_APP_ITEM
    select * from tttt
      

  6.   

    1.造个结果集,然后inset into 你要的表.
    2.删除主键
    3.where not exits排重
      

  7.   

    要借助 plsqldev里面的 查看 按钮哈。 那样不用一个一个敲。  只是替换成逗号。