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。
任何想法?
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。
任何想法?