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

Home -> Community -> Usenet -> c.d.o.server -> Is there any better SQL Statement than this ? Help !!

Is there any better SQL Statement than this ? Help !!

From: Park Yeon Jo <kudos12_at_netian.com>
Date: 27 Jan 2003 08:48:22 -0800
Message-ID: <d7fe264d.0301270848.696e126@posting.google.com>


Is there better SQL Statement than this with this SQL statements ?

It takes long so a time to execute the following SQL statement.

Three select SQL And Two intersect SQL.

Two tables has 350,000 records respectively.


select pmc.oid from productModelParam pmp, productModelCategory pmc

	where pmc.oid = pmp.oid
	and pmc.categoryValue = '3E965F2E-F64E-9ECE-1B3872409AC42428'
	and pmp.paramValue = 'TH'	
	intersect 	
	select pmc.oid from productModelParam pmp, productModelCategory pmc
	where pmc.oid = pmp.oid
	and pmc.categoryValue = '3E965F2E-F64E-9ECE-1B3872409AC42428'
	and pmp.paramValue = '50Vdc'	  
	intersect 	
	select pmc.oid from productModelParam pmp, productModelCategory pmc
	where pmc.oid = pmp.oid
	and pmc.categoryValue = '3E965F2E-F64E-9ECE-1B3872409AC42428'
	and pmp.paramValue = '0603'


===================================================

Many Thanks !! Received on Mon Jan 27 2003 - 10:48:22 CST

Original text of this message

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