选择同一表的选项-MySQL

时间:2019-02-21 11:55:48

标签: mysql

我有一张这样的桌子:

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。

1 个答案:

答案 0 :(得分:1)

select distinct `option`
from your_table
where product in (select distinct product from your_table where `option` = 78)