So I’m doing the videogame Mario database and copy and pasted this code into the terminal: SELECT * FROM characters FULL JOIN character_actions ON characters.character_id = character_actions.character_id FULL JOIN actions ON character_actions.action_id = actions.action_id;
However, it gives me an error saying I need to join all 3 tables using the JOIN statement which I have. What do i do?