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