bot50
2026-04-15 09:01:56 +00:00
commit dc741d0273
10 changed files with 28 additions and 0 deletions

3
8.sql Normal file
View File

@@ -0,0 +1,3 @@
-- write a SQL query to find the average height and weight, rounded to two decimal places, of baseball players who
-- debuted on or after January 1st, 2000. Return the columns with the name “Average Height” and “Average Weight”, respectively.
SELECT ROUND(AVG("height"), 2) AS "Average Height", ROUND(AVG("weight"), 2) AS "Average Weight" FROM "players" WHERE "debut" >= "2000-01-01";