I have two tables: News (id, title, subtitle ... created_at) and NewsCategory (id, name), with relation many to one. Each news belongs to one NewsCategory.

Now I want to build query and select one latest news for each category. If I have for example three categories: business, personal and tutorial, than I want to select one latest news for each category. Is it possible to write just one query for that?

I'm using DQL.

link|improve this question

60% accept rate
If I for example create query: SELECT MAX(n.created_at) FROM NewsAdminBundle:News n JOIN n.news_category c GROUP BY c.name then this query works fine but only select created_at field. My goal is to select title, subtitle ... Any idea? – repincln Feb 16 at 17:30
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.