I have a SQL query as follows

SELECT * FROM epf_application WHERE application_id IN
(SELECT application_id FROM epf_application_device_type WHERE device_type_id IN
(SELECT device_type_id FROM epf_device_type WHERE name="someDevice") LIMIT 30) LIMIT 30

When I run it in phpMyAdmin, I get the following error

1235 - This version of MySQL doesn't yet support 'LIMIT & IN/ALL/ANY/SOME subquery'

From the error, I am guessing that there is a problem with placing LIMIT in a subquery. Any suggestions on how I can fix this?

link|improve this question

As the error says, that feature apparently isn't yet supported. You may need to get your hands dirty and use a temporary table or something. – Chris Jun 23 '11 at 15:11
Nested SQL queries are also bad on performance. FYI – FinalForm Jun 23 '11 at 15:12
@FinalForm: Indeed, I think David needs to learn a bit about JOINS. – josh.trow Jun 23 '11 at 15:14
@josh.trow Thanks for the tip. I'll learn JOINS – David Jun 23 '11 at 20:26
feedback

1 Answer

up vote 1 down vote accepted
SELECT 
 ea.* 
FROM 
 epf_application ea JOIN epf_application_device ead 
  ON ead.application_id = ea.application_id 
 JOIN epf_device_type edt 
  ON edt.device_type_id = ead.device_type_id 
WHERE 
 edt.name = 'someDevice' 
LIMIT 30
link|improve this answer
This worked. Thanks. – David Jun 23 '11 at 20:30
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.