谢谢各位大哥

解决方案 »

  1.   

    对Oracle不熟悉,也没有用过,不知其语法与SQL是否相同。所以。。
    只好帮助你UP一下啦。
      

  2.   

    delete a 
    where a.id in (select b.id from a,b where a.id=b.id) 
    //括弧里的意思是找出a.id=b.id记录,然后把记录用IN关键字,SELECT 后面更b.id和a.id的效果应该是一样。
    and a.date<=to_date('20001231','yyyymmdd')
      

  3.   

    delete a
    where (a.id in (select b.id from a,b where a.id=b.id) )
     and (a.date<=to_date('20001231','yyyymmdd')
      

  4.   

    tmd,结不了帐,老是error page
    明天再来结分