What is wrong with this Sub Query:
it's suppose to spit out the date of the latest 25 articles in 'published' status and nothing more.
Code:
SELECT date FROM `records` WHERE STATUS = 'published' AND date = ( select max(date) FROM `records` ) LIMIT = 25;




Comment