Is Sivan Pregnant?

NO

Last updated: Now
DATABASE QUERY CONSOLE
-- Pregnancy Status Database Query
SELECT * FROM pregnancy_status
WHERE person = 'Sivan'
AND status = 'pregnant';
Query executed successfully.
Rows returned: 0
-- No rows found. Sivan remains gloriously un-pregnant!
-- Alternative approach using JOINs
SELECT p.name, p.status, f.cuteness_level
FROM people p
LEFT JOIN pregnancies preg ON p.id = preg.person_id
LEFT JOIN future_babies f ON preg.id = f.pregnancy_id
WHERE p.name = 'Sivan';
| name | status | cuteness_level |
|-------|--------|----------------|
| Sivan | NULL | NULL |
-- Even LEFT JOINs can't find a pregnancy
-- Final verification with EXISTS clause
SELECT
  CASE
    WHEN EXISTS (
      SELECT 1 FROM pregnancies
      WHERE person_name = 'Sivan'
    ) THEN 'YES'
    ELSE 'NO'
  END AS is_sivan_pregnant;
| is_sivan_pregnant |
|-------------------|
| NO |
-- The database has spoken. Case closed.