automated commit by check50 [check50=True]
This commit is contained in:
7
6.sql
7
6.sql
@@ -2,10 +2,13 @@
|
|||||||
-- Call the column representing total hits by players in 2001 “total hits”.
|
-- Call the column representing total hits by players in 2001 “total hits”.
|
||||||
-- Sort by total hits, highest to lowest.
|
-- Sort by total hits, highest to lowest.
|
||||||
-- Your query should return two columns, one for the teams’ names and one for their total hits in 2001.
|
-- Your query should return two columns, one for the teams’ names and one for their total hits in 2001.
|
||||||
SELECT t."name", perf."H" AS "total hits"
|
SELECT
|
||||||
|
t."name",
|
||||||
|
SUM(perf."H") AS "total hits"
|
||||||
FROM "teams" AS t
|
FROM "teams" AS t
|
||||||
JOIN "performances" AS perf
|
JOIN "performances" AS perf
|
||||||
ON perf."team_id" = t."id"
|
ON perf."team_id" = t."id"
|
||||||
WHERE perf."year" = "2001"
|
WHERE perf."year" = '2001'
|
||||||
|
GROUP BY t."id", t."name"
|
||||||
ORDER BY "total hits" DESC
|
ORDER BY "total hits" DESC
|
||||||
LIMIT 5;
|
LIMIT 5;
|
||||||
|
|||||||
Reference in New Issue
Block a user