Files
me50/5.sql
2026-04-15 10:38:45 +02:00

4 lines
265 B
SQL

-- write a SQL query to return the first and last names of all right-handed batters.
-- Sort the results alphabetically by first name, then by last name.
SELECT "first_name", "last_name" FROM "players" WHERE "bats" = "R" ORDER BY "first_name" ASC, "last_name" ASC;