automated commit by check50 [check50=True]

This commit is contained in:
daviddoji
2026-04-15 10:41:44 +02:00
parent 38ce3a6012
commit 5aa4e17c1c

2
7.sql
View File

@@ -0,0 +1,2 @@
-- write a SQL query to count the number of players who bat (or batted) right-handed and throw (or threw) left-handed, or vice versa.
SELECT COUNT(*) FROM "players" WHERE "bats" = "R" AND "throws" = "L" OR "bats" = "L" AND "throws" = "R";