If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > Database Server Software > MySQL > duplicate ids not returned

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 12-07-09, 09:37
sakis sakis is offline
Registered User
 
Join Date: Nov 2009
Posts: 19
duplicate ids not returned

Hi i am having a query such as

Code:
SELECT * FROM #__vm_product AS prd INNER JOIN #__vmfprodsubcategory AS feat ON feat.product_id=prd.product_id INNER JOIN #__vm_product_category_xref AS cat ON cat.product_id=prd.product_id WHERE prd.product_id IN (1,5,5,6) AND cat.category_id=1 GROUP BY prd.product_id
As you have seen there is a
Code:
WHERE prd.product_id IN (1,5,5,6)
where some ids are being reffered more than 1 times.

But the query returns them once. The above query returns the product ids 1,5,6.

I want them to be returned as much times as there are in the where in clause for ordering them with a count function.

Is this possible?
Reply With Quote
  #2 (permalink)  
Old 12-07-09, 10:18
r937 r937 is offline
SQL Consultant
 
Join Date: Apr 2002
Location: Toronto, Canada
Posts: 19,525
Code:
SELECT * 
  FROM ( SELECT 1 AS id
         UNION ALL
         SELECT 5
         UNION ALL
         SELECT 5
         UNION ALL
         SELECT 6 ) AS xxx
INNER
  JOIN #__vm_product AS prd 
    ON prd.product_id = xxx.id
INNER 
  JOIN #__vmfprodsubcategory AS feat 
    ON feat.product_id = prd.product_id 
INNER 
  JOIN #__vm_product_category_xref AS cat 
    ON cat.product_id = prd.product_id 
   AND cat.category_id = 1
i removed your GROUP BY clause because clearly, GROUP BY is totally wrong if used with the dreaded, evil "select star"
__________________
r937.com | rudy.ca
please visit Simply SQL and buy my book
Reply With Quote
  #3 (permalink)  
Old 12-14-09, 13:52
sakis sakis is offline
Registered User
 
Join Date: Nov 2009
Posts: 19
Thanx a lot
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On