SELECT id_emoticon, title, category
FROM emoticons
WHERE id_emoticon IN (4, 4, 4, 4, 3)
ORDER BY id_emoticon DESC
我有这样的查询,我得到的结果只有一个4和一个3 id。我需要在WHERE子句中提供的所有id。
任何想法?
我猜你想要的顺序是id_emoticon 4后面跟着3,id_emoticon按短降序排列
如果是这种情况,请使用
SELECT id_emoticon, title, category
FROM fe_emoticons
WHERE id_emoticon IN (4, 4, 4, 4, 3)
ORDER BY id_emoticon DESC