Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.misc -> DBA FIGHT

DBA FIGHT

From: denaro <denaro_at_freemail.it>
Date: Tue, 24 Jun 2003 11:28:24 +0200
Message-ID: <bd95uq$rfo$1@lacerta.tiscalinet.it>


These queries are equivalents?
Same results?
Same performance?

select *
from table1 t1
where t1.a in
  (
   select t2.a
   from fable2 t2
   where t1.b = t1.a
  )

select *
from table1 t1

     table2 t2
where t1.a in t2.a
and t1.b = t1.a Received on Tue Jun 24 2003 - 04:28:24 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US