RE: Hi all...Can you please tell me how to delet...
create table tab2(a int b int);delete from tab2 a where (a.rowid) > ( sel min(b.rowid) from tab2 b where a.a b.a);or delete from tab2 a where (a.rowid) < ( sel max(b.rowid) from tab2 b where a.a b.a);