select * from crime_scene; select * from suspects;
SELECT cs.*, s.* FROM crime_scene cs FULL JOIN suspects s ON cs.id = s.id;