Peki sadece ben daha önce hiç görmedim, ya da farkında değil garip bir davranış isabet ettik.
Ben bu sorguyu kullanarak ediyorum:
SELECT *,
COUNT(*) AS pages
FROM notis
WHERE cid = 20
ORDER BY nid DESC
LIMIT 0, 3
... Yaparken ben toplam satırları almak istediğiniz 3 öğe okumak ama.
Problem is...
...when I use count the query only returns one row, but if I remove
COUNT(*) AS pages
-- I get the 3 rows as I'm suppose to. Obviously, i'm missing something here.