mysql tablodan id ve count (id) seçilmesi

0 Cevap php

I am trying to make a photo album system in php and mysql. I have this code for list all photo albums:

SELECT  albums.*, count(pictures.id) AS countpic 
FROM albums
LEFT JOIN pictures ON (albums.id=pictures.album_id)
GROUP BY albums.id 
ORDER BY albums.date DESC");

Ben fotoğraf küçük (tablo resim yazılı thumb_id si) ve aynı zamanda her albümleri atanan tüm resimlerin sayısı ile fotoğraf albümleri başlık listelemek istiyorum.

Eğer birini seçmek kullanarak thumb_id seçmek ve aynı zamanda albümdeki tüm resimlerin sayısı nasıl bilmiyorum?

Teşekkürler

0 Cevap