We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 50f5645 commit d3321bfCopy full SHA for d3321bf
src/main/java/g3201_3300/s3220_odd_and_even_transactions/script.sql
@@ -3,4 +3,4 @@
3
select transaction_date,
4
sum(case when amount%2<>0 then amount else 0 end) as odd_sum,
5
sum(case when amount%2=0 then amount else 0 end) as even_sum from transactions
6
-group by transaction_date order by transaction_date;
+group by transaction_date order by transaction_date asc;
0 commit comments