我有一张这样的桌子:
id product option
1 55 78
2 55 55
3 55 42
4 68 78
5 68 62
6 68 36
7 94 25
8 94 47
9 94 81
如何在我有78选项的情况下选择所有选项?我需要选择55、42、62、36,因为产品具有选项78。
答案 0 :(得分:1)
select distinct `option`
from your_table
where product in (select distinct product from your_table where `option` = 78)