gpt4 book ai didi

mysql - 需要帮助使用 SELECT DISTINCT 结果搜索 MySQL 数据库

转载 作者:行者123 更新时间:2023-11-29 14:16:31 24 4
gpt4 key购买 nike

所以我是 MySQL 新手,遇到了一些麻烦。我有一个名为 book_genres 的表,另一个名为 books。

book_genres
+-------+---------+
|book_id| genre |
+-------+---------+
| 1 | Horror |
| 1 | Comedy |
| 2 | Romance |
| 2 | Comedy |
+-------+---------+

books
+-------+---------+
|book_id| title |
+-------+---------+
| 1 | A Book |
| 2 | B Book |
| 3 | C Book |
+-------+---------+

我使用以下命令来提取具有 3 个选定流派的所有 book_ids:

SELECT DISTINCT a.book_id, b.genre AS genre1, c.genre AS genre2, d.genre AS genre3 
FROM book_genres a
JOIN book_genres b ON a.book_id = b.book_id AND b.genre LIKE 'Romance'
JOIN book_genres c ON a.book_id = c.book_id AND c.genre LIKE 'Action'
JOIN book_genres d ON a.book_id = d.book_id AND d.genre LIKE 'Comedy'
GROUP BY book_id

我现在想要做的是使用此搜索中找到的 book_ids 从 books 表中提取所有书名。我不确定是否有更简单的方法来做到这一点,但这就是我能想到的。

感谢所有可以提供帮助的人!

最佳答案

我认为这可能是更好的方法:

select b.*
from books b join
book_genres bg
on b.bookid = bg.bookid
where bg.genre in ('Romance', 'Action', 'Comedy')
group by b.book_id

这将选择具有三种类型之一的所有书籍。您的查询不清楚您想要在流派之间使用“或”还是“和”,所以我假设“或”。

分组依据使用了 MySQL 的一项称为“隐藏列”的功能。在这种情况下,它的作用就像一个不同的。

如果您需要包含所有三种类型的所有书籍,您可以这样做:

select b.*
from books b join
(select book_id
from book_genre
group by book_id
having max(case when genre = 'Romance' then 1 else 0 end) > 0 and
max(case when genre = 'Action' then 1 else 0 end) > 0 and
max(case when genre = 'Comedy' then 1 else 0 end) > 0
) allg
on b.book_id = allg.book_id

关于mysql - 需要帮助使用 SELECT DISTINCT 结果搜索 MySQL 数据库,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12573277/

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