mirror of
https://github.com/jorgev259/soc_site-astro.git
synced 2025-06-29 07:57:41 +00:00
5 lines
No EOL
180 B
SQL
5 lines
No EOL
180 B
SQL
SELECT `categoryName`, COUNT(*) as "count"
|
|
FROM `Album_Category`, `albums`
|
|
WHERE `Album_Category`.`albumId` = `albums`.`id`
|
|
AND `albums`.`status` = "show"
|
|
GROUP BY `categoryName`; |