automated commit by check50 [check50=True]

This commit is contained in:
daviddoji
2026-04-28 14:55:25 +02:00
commit 44a1116fcc
12 changed files with 8 additions and 0 deletions

8
1.sql Normal file
View File

@@ -0,0 +1,8 @@
-- write a SQL query to find the average player salary by year.
-- Sort by year in descending order.
-- Round the salary to two decimal places and call the column “average salary”.
-- Your query should return a table with two columns, one for year and one for average salary.
SELECT "year", ROUND(AVG("salary"), 2) AS "average salary"
FROM "salaries"
GROUP BY "year"
ORDER BY "year" DESC;

0
10.sql Normal file
View File

0
11.sql Normal file
View File

0
12.sql Normal file
View File

0
2.sql Normal file
View File

0
3.sql Normal file
View File

0
4.sql Normal file
View File

0
5.sql Normal file
View File

0
6.sql Normal file
View File

0
7.sql Normal file
View File

0
8.sql Normal file
View File

0
9.sql Normal file
View File