Musikalien-Katalog

Kategorie: Sammelwerke

Diese Kategorie enthält 7 Titel.

Diese Kategorie enthält keine weiteren Unterkategorien.

Zur Oberkategorie: Klavier zu vier Händen


SELECT notat.id, notat.notation, (SELECT COUNT(music.id) FROM catalogue_music AS music WHERE music.not_neu_1 LIKE CONCAT(notat.id, "%") OR music.not_neu_2 LIKE CONCAT(notat.id, "%") OR music.not_neu_3 LIKE CONCAT(notat.id, "%") OR music.not_neu_4 LIKE CONCAT(notat.id, "%") OR music.not_neu_5 LIKE CONCAT(notat.id, "%") ) AS anzahl FROM catalogue_music_notation AS notat WHERE (notat.id REGEXP "^C 32 ?[0-9]$") AND (SELECT COUNT(music.id) FROM catalogue_music AS music WHERE music.not_neu_1 LIKE CONCAT(notat.id, "%") OR music.not_neu_2 LIKE CONCAT(notat.id, "%") OR music.not_neu_3 LIKE CONCAT(notat.id, "%") OR music.not_neu_4 LIKE CONCAT(notat.id, "%") OR music.not_neu_5 LIKE CONCAT(notat.id, "%") ) > 0 ORDER BY notat.notation
SELECT DISTINCT `notat`.`id`, `notat`.`notation`, `notat`.`prefix`, `notat`.`suffix`, COUNT(music.id) AS `anzahl` FROM `catalogue_music_notation` AS `notat` LEFT JOIN `catalogue_music` AS `music` ON music.not_neu_1 = "C 32" OR music.not_neu_2 = "C 32" OR music.not_neu_3 = "C 32" OR music.not_neu_4 = "C 32" OR music.not_neu_5 = "C 32" WHERE (notat.id = ('C 32')) GROUP BY `notat`.`id` LIMIT 1
Nach oben springen