MySQL Forums
Forum List  »  Optimizer & Parser

Re: Use of DISTINCT in INNER JOIN
Posted by: Steve Croall
Date: March 24, 2009 02:00PM

One possible workaround I can see is to put it in a sub-query, with the outer query returning all the columns required:

SELECT col1, col2
FROM tab1
WHERE col1 IN
(
SELECT DISTINCT a.col1
FROM tab1 a INNER JOIN tab2 b
ON a.col1 = b.col1
WHERE a.col1 in ('value1', 'value2')
ORDER BY a.col1
)
LIMIT 10
;

Options: ReplyQuote


Subject
Views
Written By
Posted
69290
March 24, 2009 12:07PM
Re: Use of DISTINCT in INNER JOIN
11153
March 24, 2009 02:00PM
6898
March 25, 2009 07:01PM
6588
March 27, 2009 05:20AM
5823
March 27, 2009 10:01AM
6766
March 28, 2009 02:02AM
4648
March 28, 2009 03:53PM
5847
April 01, 2009 03:36AM
6138
April 02, 2009 12:16AM
5604
April 02, 2009 06:29AM


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.