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.