Im using phpMyAdmin and using the console this query works:
SELECT * FROM images WHERE folder_id='3b7d709813898' ORDER BY image_id DESC
after the query executes the top of the page shows that this query has exectued: SQL-query:
SELECT * FROM images WHERE folder_id='3b7d709813898' ORDER BY image_id DESC LIMIT 0, 30
(notice the limit).....now if I go back to the console and try to do a query with the same line as the first using a LIMIT this time my query fails?
SELECT * FROM images WHERE folder_id='3b7d709813898' ORDER BY image_id DESC
after the query executes the top of the page shows that this query has exectued: SQL-query:
SELECT * FROM images WHERE folder_id='3b7d709813898' ORDER BY image_id DESC LIMIT 0, 30
(notice the limit).....now if I go back to the console and try to do a query with the same line as the first using a LIMIT this time my query fails?