mysql语句查询,求大牛指导
StationID    BusID     Seq
     1          1        1
     2          1        2
     3          1        3
     3          2        1
     4          2        2
     5          2        3
     5          3        1
     6          3        2
     7          3        1
建有3张表,Bus,Station,Bus_Station
上图是Bus_Station表,  现在假设我要查找不经过StationID为 1和7 的BusID,想要得到的结果是BusID为2。
可是不知道该查询语句如何写。求指导
------解决方案--------------------
select * from Bus_Station表 where BusID not in (select BusID from Bus_Station表 where StationID in (1,7));