SusQuerySELECT * FROM suspects;
JOIN phone_calls ON suspects.id = phone_calls.caller_id;
WHERE phone_calls.timestamp BETWEEN '23:00' AND '23:59';
GROUP BY suspects.name ORDER BY COUNT(*) DESC;
▍
Explore relational evidence across persons, calls, vehicles, and transactions.
Write real SQL your own way. There is no predefined path to the truth.
Connect evidence, question alibis, and identify the culprit.
Brush up on your querying skills before entering the field. Select a command below to review how it works.
SELECT name, age FROM suspects;| name | age |
|---|---|
| Victor Vance | 42 |
| Elena Rostova | 28 |
| Marcus Thorne | 35 |