テーブルがテストのサンプルデータがあります
name | catid | date
------------
abc | 1
def | 2
ghi | 1
jkl | 2
mno | 1
pqr | 3
そして私の質問
SELECT * FROM test WHERE catid = 1 AND catid = 2 AND catid = 3 ORDER BY date DESC
結果で値を取得する方法は
name | catid
------------
abc | 1
def | 2
pqr | 3