Compare commits

..

2 Commits

Author SHA1 Message Date
621b846797 Auto commit 2025-02-27 17:41:29 +08:00
522e2388ca Auto commit 2025-02-27 17:40:50 +08:00

View File

@ -243,7 +243,21 @@ WHERE b.note = a.author_name
GROUP BY a.author_id
HAVING COUNT(*) > 1;
#9 视图
CREATE VIEW v_book AS
SELECT b.genre, a.author_name, COUNT(*) c
FROM tb_books b, tb_authors a
WHERE b.note = a.author_name
GROUP BY b.genre, a.author_id
HAVING COUNT(*) = ( #子查询用来统计这个类别中 数量最多的作者的图书数量
SELECT COUNT(*)
FROM tb_books
WHERE b.genre = genre
GROUP BY note
ORDER BY COUNT(*) DESC
LIMIT 1
);
#9
```