Jag har en SQL-sats som ser ut som följer (kanske inte så snygg): SELECT ID_category, categoryName, RecordCount från tabell 2
"SELECT DISTINCT tbl_category.ID_category, tbl_category.CategoryName, tbl_product.ProductID_category, tbl_product.ProductVisible FROM tbl_category, tbl_product WHERE tbl_category.CategorySubOf = 0 AND tbl_product.ProductVisible = True AND tbl_product.ProductID_category = tbl_category.ID_category ORDER BY tbl_category.CategoryName"
Här loopar jag ut resultatet från tbl_category som visar samtliga kategorier som innehåller en synlig (ProductVisible) produkt.
Men hur gör jag om jag efter varje kategorinamn även vill visa hur många synliga produkter som finns för respektive kategori?
Mycket tacksam för hjälp!Sv: RecordCount från tabell 2
(select count(*) from tbl_product
where productVisible
and ProductID_category = tbl_category.ID_category ) as numberOfProducts
from FROM tbl_category
WHERE CategorySubOf = 0
ORDER BY CategoryName