diff --git a/2.sql b/2.sql index e69de29..edfd0b7 100644 --- a/2.sql +++ b/2.sql @@ -0,0 +1,2 @@ +-- write a SQL query to find the side (e.g., right or left) Babe Ruth hit. +SELECT "bats" FROM "players" WHERE "first_name" = "Babe" AND "last_name" = "Ruth"; diff --git a/3.sql b/3.sql index e69de29..4dee596 100644 --- a/3.sql +++ b/3.sql @@ -0,0 +1,2 @@ +-- write a SQL query to find the ids of rows for which a value in the column debut is missing. +SELECT "id" FROM "players" WHERE "debut" = "NULL";