gpt4 book ai didi

mysql - 从表中只选择那些恰好有 4 个作者的书?

转载 作者:行者123 更新时间:2023-11-29 00:03:11 25 4
gpt4 key购买 nike

表作者:

id | name_author
---------
1 | david
2 | kate
3 | tom
4 | mark

table 上书籍:

id | name_book
------------
1 | book1
2 | book2
3 | book3

作者和书籍表关系

id_book | id_author
-------------------
1 | 2
1 | 3
1 | 4
2 | 2
1 | 1
3 | 4

因此,我必须得到“Book1”这本书,因为它有 4 个作者(david、kate、tom、mark)。

如何向 mysql 写入查询?

最佳答案

你可以写类似的东西(未经测试)

select name_book
from books as b
, link_book_author as l
where b.id = l.id_book
group by name_book
having count(id_author) = 4

关于mysql - 从表中只选择那些恰好有 4 个作者的书?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28773570/

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