automated commit by check50 [check50=True]

This commit is contained in:
daviddoji
2026-04-15 11:01:52 +02:00
parent 7c9efa7e81
commit 3f32b9343f
3 changed files with 7 additions and 1 deletions

5
10.sql
View File

@@ -0,0 +1,5 @@
-- write SQL query to answer a question of your choice. This query should:
-- Make use of AS to rename a column
-- Involve at least condition, using WHERE
-- Sort by at least one column using ORDER BY
SELECT ROUND(AVG("weight"), 2) AS "Average Weight" FROM "players" WHERE "birth_year" > 2000 ORDER BY "first_name";