How to SELECT the newest four items per category?

前端 未结 8 2249
被撕碎了的回忆
被撕碎了的回忆 2020-11-22 01:43

I have a database of items. Each item is categorized with a category ID from a category table. I am trying to create a page that lists every category, and underneath each

8条回答
  •  伪装坚强ぢ
    2020-11-22 02:25

    not very pretty but:

    SELECT image 
    FROM item 
    WHERE date_listed IN (SELECT date_listed 
                          FROM item 
                          ORDER BY date_listed DESC LIMIT 4)
    

提交回复
热议问题