From bc9b6e3826342c985a3f992d9a8f413fdc2bac49 Mon Sep 17 00:00:00 2001 From: daviddoji Date: Wed, 15 Apr 2026 10:23:57 +0200 Subject: [PATCH] automated commit by check50 [check50=True] --- 2.sql | 2 ++ 3.sql | 2 ++ 2 files changed, 4 insertions(+) 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";