automated commit by check50 [check50=True]

This commit is contained in:
daviddoji
2026-04-28 15:40:19 +02:00
parent 3ee6ac7d46
commit 92f9132939
4 changed files with 17 additions and 6 deletions

2
3.sql
View File

@@ -3,7 +3,7 @@
-- Note that there may be two players with the name “Ken Griffey.” This Ken Griffey was born in 1969.
-- Your query should return a table with two columns, one for year and one for home runs.
SELECT perf."year", perf."hr"
FROM "performances" as perf
FROM "performances" AS perf
JOIN "players" AS p
ON perf."player_id" = p."id"
WHERE