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 > what must be done to final result appear in the order of second statement in each que

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 10-20-10, 10:17
lse123 lse123 is offline
Registered User
 
Join Date: May 2007
Posts: 139
what must be done to final result appear in the order of second statement in each que

Queries of the kind of

SELECT * FROM Products WHERE Product_ID IN (SELECT Product_ID FROM SidesFeaturedList ORDER BY AA)
SELECT * FROM Products WHERE Product_ID IN (SELECT Product_ID FROM ThreeFeaturedList)

what must be done to final result appear in the order of second statement in each query?
or this I say is the default?
Reply With Quote
  #2 (permalink)  
Old 10-20-10, 12:38
it-iss.com it-iss.com is offline
Registered User
 
Join Date: Sep 2009
Location: San Sebastian, Spain
Posts: 623
Hi,

Firstly the order by clause in a subquery is irrelevant and should be removed. What you need to do is to have the ORDER BY statement on the primary query. Using the IN is filtering your rows but you actually need to join the two tables so that you can use the column you want to order by:

Code:
SELECT p.* FROM Products p, SlidesFeaturedList s WHERE p.Product_ID = s.Product_ID
ORDER BY s.AA
__________________
Ronan Cashell
Senior Oracle/MySQL DBA
http://www.it-iss.com
Reply With Quote
  #3 (permalink)  
Old 10-20-10, 13:14
r937 r937 is offline
SQL Consultant
 
Join Date: Apr 2002
Location: Toronto, Canada
Posts: 19,534
two minor but important improvements:
Code:
SELECT s.AA
     , p.* 
  FROM Products AS p
INNER
  JOIN SlidesFeaturedList AS s 
    ON s.Product_ID = p.Product_ID
ORDER 
    BY s.AA
__________________
r937.com | rudy.ca
please visit Simply SQL and buy my book
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