I have a 1 table database that has a list of advertisements. I am trying to grab the LATEST advertisement for EACH resort. I know it should pr
I think this should do it:
SELECT * FROM advertisements GROUP BY resort ORDER BY dateAdded DESC