1
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。

任何想法?

4

1 回答 1

0

我猜你想要 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
于 2013-01-14T07:39:07.737 回答