我在蜂巢中有以下数据:
userid cityid
1 15
2 15
1 7
3 15
2 8
3 9
3 7
而且我只想保留具有 cityid 15 和 cityid 7 的用户 ID(在我的示例中,它将是用户 ID 1 和 3)。我试过:
select userid from table where cityid = 15 and userid in (select userid from table where cityid = 7);
但是对于蜂巢,它不起作用。有人可以帮忙吗?
谢谢!