我正在尝试在一个表中显示'id'
,'topic_id'
其中 an'id'
可能具有来自第二列的两个特定值。但是,一些 id 有多个值。
id topic_id
1 red
2 blue
1 blue
4 purple
如果我想显示 id 的 topic_id 是红色和蓝色,查询是什么?
select id, topic_id
from db
where topic_id='red, blue';
结果集是“1,2”而不是只有红色和蓝色的 1。
谢谢!!!