我有两张桌子,A,B
A: id is primary key and indexed
id, type_id, status
------------------
1, 1, True
2, 1, False
3, 2, False
...
B: (Type) type_id is primary key and indexed
type_id, param
----------
1, 23
2, 35
3, 24
我想选择B
其中至少有 1 个关联条目的所有A
行status True
select distinct B.id, B.param
from B
join A on A.type_id = B.type_id
where A.status = true
这是一个好方法吗?