Auto commit

This commit is contained in:
smallkun 2025-02-27 17:41:29 +08:00
parent 522e2388ca
commit 621b846797

View File

@ -249,7 +249,7 @@ SELECT b.genre, a.author_name, COUNT(*) c
FROM tb_books b, tb_authors a FROM tb_books b, tb_authors a
WHERE b.note = a.author_name WHERE b.note = a.author_name
GROUP BY b.genre, a.author_id GROUP BY b.genre, a.author_id
HAVING COUNT(*) = ( HAVING COUNT(*) = ( #子查询用来统计这个类别中 数量最多的作者的图书数量
SELECT COUNT(*) SELECT COUNT(*)
FROM tb_books FROM tb_books
WHERE b.genre = genre WHERE b.genre = genre