一个人可以有多个标签, sql 筛选只包含某些标签[标签(1,2,3)]的人,怎么写效率高?
表:person_tag
字段 : id , person_id , tag_id
我的实现逻辑是:
先筛选出拥有这些标签的人,再排除其中不只有这些标签的人。
感觉还有更好的实现逻辑。
with w1 as (
select distinct person_id
from person_tag
where tag_id in(1,2,3)
),w2 as (
select distinct w1.person_id
from w1
left join person_tag t1
on w1.person_id=t1.person_id and t1.tag_id in(1,2,3)
where
t1.id is null
)
select person_id from w1
except
select person_id from w2
-- select person_id
-- from w1
-- where not exists (
-- select 1
-- from w2
-- where w1.person_id = w2.person_id
-- )
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
https://www.v2ex.com/t/771122
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.