I've searched all over the place, but just can't seem to get the right way of phrasing my question to get the result I want (I'm sure it's really easy, but I've been smacking my head against it for ages!)
I have the following query:
SELECT co.title, co.content, co.id, bu.backupDate, bu.backupBy, COUNT(bu.id) AS totalBackups
FROM content co, wol_content_backup bu
WHERE co.car_model = '6-110'
AND co.subcategory = 'introduction'
ORDER BY bu.backupDate DESC
content contains an article's content, and wol_content_backup contains backups of the articles. bu.backupDate is a DATETIME field containing the date of the backup.
What I want is to return the date of the last backup(bu.backupDate) (there are usually several, since most of my admins are well trained and press the "backup" button before they modify the article!) and also the number of backups in the database (COUNT(bu.id) AS totalBackups)
However, my query is currently just returning one result, which is the first backup (not the most recent) All I want is for it to select the row from content which has the most recent corresponding backup date. Query works fine without the COUNT(bu.id) so Im guessing this is the problem, but not sure how to fix it...
Any help would be really appreciated!
Happy Christmas!
EDIT
Thanks for all your help guys! I tried all of your suggestions (and learned a huge amount of new stuff along the way!)
You all put me on the right track by reminding me about the MAX() function, which eventually led to the following functional query:
SELECT co.title, co.content, co.id, MAX(bu.backupDate) AS backupDate, bu.backupBy, COUNT(bu.id) AS totalBackups
FROM content co, wol_content_backup bu
WHERE co.car_model = '6-110'
AND co.subcategory = 'introduction'
which outputs exactly what I wanted!
Thanks so much for helping a coder in distress on Christmas day! :)
Seb