SQLite如何通过id获取相同的组?

时间:2018-02-11 14:40:06

标签: sql sqlite

我对查询有疑问。这是我的表:

enter image description here

我通过onClick方法得到id,我想要这样的结果。例如,如果id为2,则获取具有相同组的所有行。

结果:

enter image description here

1 个答案:

答案 0 :(得分:0)

您可以使用子查询:

select t.*
from mytable t
where t.group = (select t2.group from mytable t2 where t2.id = 2);

请注意,group对于列来说是一个非常糟糕的名称,因为它是一个SQL关键字。这很好说明。