I have two tables: one that stores blogs and the other that stores images for the blogs. The image table has columns id, blog_id, image_name
Since a blog can have multiple images assigned to it, how can I pull, say, the 5 newest blogs and have 5 entries that aren't duplicates
I've tried: Selecting from both tables but the result is like this:
id 1 image "a.jpg" - id 1 image "b.jpg" - id 2 image "c.jpg"
WHEN I WANT:
id 1 image "a.jpg" - id 2 image "c.jpg" - id 3 image "d.jpg"
Thanks for any help!