Auto commit

This commit is contained in:
smallkun 2025-02-27 17:40:50 +08:00
parent 53aacb1dee
commit 522e2388ca

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
```