I have a products table...

and a revisions table, which is supposed to track changes to product info

I try to query the database for all products, with their most recent revision...
select
*
from `products` as `p`
left join `revisions` as `r` on `r`.`product_id` = `p`.`product_id`
group by `p`.`product_id`
order by `r`.`modified` desc
but I always just get the first revision. I need to do this in one select (ie no sub queries). I can manage it in mssql, is this even possible in mysql?
