Built a SQL mystery game - can you query the killer?
▲ 122 r/MurderMystery+6 crossposts

Built a SQL mystery game - can you query the killer?

Solve murders. Master SQL. One query at a time.

Agatha Christie cases. Real suspects. Live SQLite database. You write the queries, you catch the killer.

SELECT s.name, a.location
FROM suspects s
JOIN alibis a ON s.suspect_id = a.suspect_id
WHERE a.time_from <= '23:00'
AND a.location != 'Cabin'
ORDER BY s.name;

That's the kind of query standing between you and the murderer.

No signup. Runs in the browser. → querythemurder.com

Feedback: querythemurder@gmail.com

u/Sensitive-Try-9603 — 12 days ago