mirror of
https://github.com/jorgev259/soc_site-astro.git
synced 2025-06-29 07:57:41 +00:00
Implement Album Count component
This commit is contained in:
parent
c17d1523a9
commit
56c56c9877
7 changed files with 83 additions and 42 deletions
5
prisma/sql/getAlbumCount.sql
Normal file
5
prisma/sql/getAlbumCount.sql
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
SELECT `categoryName`, COUNT(*) as "count"
|
||||
FROM `Album_Category`, `albums`
|
||||
WHERE `Album_Category`.`albumId` = `albums`.`id`
|
||||
AND `albums`.`status` = "show"
|
||||
GROUP BY `categoryName`;
|
||||
Loading…
Add table
Add a link
Reference in a new issue