我目前有这个
SELECT type, extra_id, COUNT(*) AS count, id
FROM `notifications`
WHERE `receiver_id` = '".$this->user_id."'
AND `read` = '0'
GROUP BY type, extra_id
ORDER BY `id` DESC
但这仅按数据库中第一个找到的结果排序,因为这是我选择 id 时所采用的。我怎样才能做到这一点,以便notifications
在 SELECT id中使用最后找到的 ID ?