select * from 
(select  rownum rn,A.*  from  A) t1,  
(select  rownum rn,A.*  from  A  where  A.A2='对') t2
where t1.rn=t2.rn(+);