Hi. I can’t get passed this one: Now you can see all the info from both tables. If you recall, that’s a “one-to-one” relationship. So there’s one row in each table that matches a row from the other. Use another JOIN command to view the characters and sounds tables together. They both use the character_id column for their keys as well.
I used this: SELECT *
FROM characters
JOIN sounds
ON characters.character_id = sounds.character_id;