Skip to content

Commit

Permalink
fix: change ordering
Browse files Browse the repository at this point in the history
  • Loading branch information
diksown committed Nov 26, 2023
1 parent 1bd7d86 commit cc435fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sql/consultas.sql
Expand Up @@ -40,7 +40,7 @@ FROM GUERRA GR JOIN COLONIA CL
ON RC.NOME = FR.RACA
GROUP BY RC.NOME
HAVING ROUND(AVG(GR.OBITOS)) >= 0 OR AVG(GR.OBITOS) IS NULL
ORDER BY AVG(GR.OBITOS) ASC;
ORDER BY AVG(GR.OBITOS) DESC NULLS LAST;



Expand Down

0 comments on commit cc435fc

Please sign in to comment.