automated commit by check50 [check50=True]

This commit is contained in:
daviddoji
2026-04-28 16:45:22 +02:00
parent c14dcd272d
commit 6bcd687802

2
11.sql
View File

@@ -11,7 +11,7 @@
SELECT
p."first_name",
p."last_name",
(s."salary" / perf."H") AS "dollar per hit"
(CAST(s."salary" AS REAL) / perf."H") AS "dollars per hit"
FROM "players" AS p
JOIN "salaries" AS s
ON s."player_id" = p."id"