gpt4 book ai didi

mysql - 多对多关系SQL查询

转载 作者:可可西里 更新时间:2023-11-01 07:48:20 34 4
gpt4 key购买 nike

我正在尝试创建一个可以在多对多关系数据库中获取结果的查询。
到目前为止,我得到了以下信息:
一个包含歌曲的表格、一个包含标签的表格和一个“链接”表格,因为一首歌曲可以有多个标签,一个标签可以属于多首歌曲。

看起来像这样:

Songs       Link        Tags
======= ===== =========
Sid Sid Tid
Songname Tid Tagname

现在假设您有 3 首歌曲 A B 和 C 以及 3 个标签:X、Y 和 Z。
歌曲 A 有标签 Y,歌曲 B 有标签 Z,歌曲 C 有标签 X 和 Z。

我已经成功地创建了一个查询来仅通过一个标签获取一首歌曲(例如 Z 给出 B 和 C)。
但是,当输入多个标签(例如,输入(搜索)字段)时,我如何创建一个搜索歌曲的查询。

我已经搜索过几次命令 INTERSECT 和 INNER JOIN 出现了,但我无法成功创建查询。

感谢任何帮助!

最佳答案

这是基本的多对多选择语句。

select s.*, t.*  
from songs s
join songs_tags st on s.songId = st.songId
join tags t on t.tagId = st.tagId
-- optional where clause
where s.name = 'my song'

当 where 子句是基于标签时,将其翻转过来

select s.*, t.*  
from tags t
join songs_tags st on s.songId = st.songId
join songs s on s.songId = st.songId
-- optional where clause
where t.name = 'whatever'

如果要返回所有带有多个标签的歌曲,只需更改 where 子句:

select s.*
from tags t
join songs_tags st on s.songId = st.songId
join songs s on s.songId = st.songId
where t.name in ('tag1', 'tag2', 'tag3')

返回带有特定标签的特定歌曲,例如,如果您想按名称和标签搜索

select s.*, t.*  
from songs s
join songs_tags st on s.songId = st.songId
join tags t on t.tagId = st.tagId
where s.name like '%mysong%' and t.name in ('tag1', 'tag2')

您还可以自己过滤连接表,有时这是必要的:

select s.*, t.*  
from songs s
join songs_tags st on s.songId = st.songId
join tags t on t.tagId = st.tagId and t.name in ('tag1', 'tag2')
where s.name like '%mysong%'

查找没有标签的歌曲

select s.*
from songs s
left join songs_tags st on s.songId = st.songId
where st.songId is null

要查找具有所有标签的歌曲:

select s.*
from songs s
join songs_tags st1 on s.songid = st1.songid
join songs_tags st2 on s.songid = st2.songid
join songs_tags st3 on s.songid = st3.songid
where st1.tagid = 1 and st2.tagid = 2 and st3.tagid = 3

关于mysql - 多对多关系SQL查询,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10913308/

34 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com