At the moment I have a query in MySQL that adds the consumption that a certain person did in a time range:
SELECT e.codigo, round(sum(c.valor),2) as cupo FROM tbl_consumo c
INNER JOIN tbl_empleado e
on c.tbl_empleado_id=e.id
WHERE fecha...
asked by
18.12.2018 / 21:50