Posts by antonio germano • 31 points
1 post
-
3
votes1
answer1358
viewsQ: Sales Ranking Report
I use this SQL command to make a sales ranking SQL: SELECT VENDEDOR,SUM(TOTAL) AS GERAL FROM VENDAS GROUP BY VENDEDOR ORDER BY SUM(TOTAL) DESC; Upshot: VENDEDOR | VALOR FULANO1 | 1000 FULANO2 | 800…
sql-serverasked antonio germano 31