MySQL Forums
Forum List  »  Optimizer & Parser

Re: SUBQUERY PROBLEM
Posted by: Jay Pipes
Date: February 07, 2006 04:45PM

No need for subquery. Use an outer join. Try this:

SELECT
e1.ReportID
, e1.ReportName
, e1.FromDate
, e1.ToDate
, e1.Market
, e1.Entity
, e1.Submarket
, e1.CurrencyCode
, e1.Customer
FROM nm1_customer_exempt e1
LEFT JOIN nm1_customer_exempt e2
ON e1.Market = e2.Market
AND e1.Entity = e2.Entity
AND e1.Submarket = e2.Submarket
AND e1.CurrencyCode = e2.CurrencyCode
AND e1.Customer = e2.Customer
AND e2.FromDate >= '2005-11-01 00:00:00'
AND e2.ToDate <= '2005-11-30 00:00:00'
WHERE e1.FromDate >= '2005-12-01 00:00:00'
AND e1.ToDate <= '2005-12-31 00:00:00'
AND e2.ReportID IS NULL;

Jay Pipes
Community Relations Manager, North America, MySQL Inc.

Got Cluster? http://www.mysql.com/cluster
Personal: http://jpipes.com

Options: ReplyQuote


Subject
Views
Written By
Posted
3315
February 07, 2006 04:21PM
Re: SUBQUERY PROBLEM
2200
February 07, 2006 04:45PM
2085
February 07, 2006 04:52PM
2195
February 08, 2006 04:57AM
2053
February 08, 2006 03:59PM
2113
February 08, 2006 08:37AM
2287
February 13, 2006 11:06AM
2269
February 13, 2006 11:17AM
2158
February 13, 2006 11:22AM
2056
February 13, 2006 12:16PM


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.