SELECT sentence from "building a mario database" not working not sure why

“Mario should have a row now and his character_id should have been automatically added. View all the data in your characters table with SELECT to see.”

I tried these both but none works:

SELECT character_id FROM characters;
SELECT character_id, name, homeland, favorite_color FROM characters;

Test is expecting using * as a whildcard for selecting all columns.

2 Likes

I see, thank you for replying.