I have this MySql query:
SELECT `fecha`, GROUP_CONCAT(CONCAT_WS('|', `idItem`, `nombreItem`, `cantidad`) ORDER BY `fecha`) schedule
FROM inventarioStat
GROUP BY fecha
the thing is it doesnt display all the data in the data it should. It only displays the last 50 or so entry? Is there some kind of limit or something Im not seeing?
Can you push me in the right direction?