Closed jeancdevx closed 6 days ago
This pull request includes a small change to the consultas-utiles.sql file. The change adds a new query to obtain the total sales per day.
consultas-utiles.sql
TRUNC(FECHA_EMISION)
SUM(TOTAL)
GROUP BY
This pull request includes a small change to the
consultas-utiles.sql
file. The change adds a new query to obtain the total sales per day.consultas-utiles.sql
: Added a query to calculate and order the total sales by day usingTRUNC(FECHA_EMISION)
andSUM(TOTAL)
in theGROUP BY
clause.