1
SELECT id_emoticon, title, category 
FROM emoticons
WHERE id_emoticon IN (4, 4, 4, 4, 3) 
ORDER BY id_emoticon DESC

私はこのようなクエリを持っていますが、結果は 1 つの 4 と 1 つの 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 に答える