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 > LIMITfunction and join queries

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 12-14-04, 06:38
shibby1011ph shibby1011ph is offline
Registered User
 
Join Date: Oct 2003
Location: Cebu City
Posts: 9
LIMITfunction and join queries

Query 1 : SELECT * FROM TABLE_A, TABLE_B, TABLE_C LIMIT 10 WHERE TABLE_A.ID = TABLE_B.ID AND TABLE_B.ID = TABLE_C.ID
Query 2: SELECT * FROM TableC INNER JOIN (SELECT * FROM TableA INNER JOIN TableB ON ID) RS1 ON ID LIMIT 10

I'm currently using mysql standard v4.1.7. Whenever i run both queries (see above), it generates an error message, which is 'check version....' Could somebody pls tell me what's wrong with my syntax?
Reply With Quote
  #2 (permalink)  
Old 12-14-04, 07:47
r937 r937 is offline
SQL Consultant
 
Join Date: Apr 2002
Location: Toronto, Canada
Posts: 19,534
query 1 is getting an error because LIMIT has to come at the end
Code:
select * 
  from TABLE_A
     , TABLE_B
     , TABLE_C 
 where TABLE_A.ID = TABLE_B.ID 
   and TABLE_B.ID = TABLE_C.ID
limit 10
query 2 is getting an error because the ON clauses are incomplete
Code:
select * 
  from TableA 
inner 
  join TableB 
    on TABLE_A.ID = TABLE_B.ID
inner
  join TableC
    on TABLE_B.ID = TABLE_C.ID
limit 10
__________________
r937.com | rudy.ca
please visit Simply SQL and buy my book
Reply With Quote
  #3 (permalink)  
Old 12-14-04, 18:42
shibby1011ph shibby1011ph is offline
Registered User
 
Join Date: Oct 2003
Location: Cebu City
Posts: 9
thanks

yes, you're right. thanks!
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