bot50
2026-04-30 07:15:06 +00:00
commit 4fced5d8c8
12 changed files with 204 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;