MySQL Forums
Forum List  »  Optimizer & Parser

Re: How to force the optimizer to use an index in a sub-query?
Posted by: Francisco Wong-Li
Date: December 01, 2005 01:51PM

try this

SELECT RS.SESSION_ID
FROM RC_ERROR RE,
RC_STAT RS
WHERE RS.SESSION_ID = RE.SESSION_ID
AND RE.CREATION_DATE_TIME > 'S'
AND RE.ERROR_DESC ||'S'= 'S'

other solution, replace
AND RE.ERROR_DESC ||'S'= 'S'
FOR
AND RE.ERROR_DESC IS NULL


saludos

Options: ReplyQuote


Subject
Views
Written By
Posted
Re: How to force the optimizer to use an index in a sub-query?
3623
December 01, 2005 01:51PM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.