So the challenge asks for:
Daisy is next. Find her id by viewing the `character_id` and `name` columns for only her row.
And the code input is:
SELECT character_id, name FROM characters WHERE name='Daisy';
as suggested by HINT, which is right by the way.
My Input:
mario_database=> SELECT character_id, name FROM characters WHERE name='Daisy';
So it doesn’t pass and when I click on Run
button it shows You should view suggested columns from "characters" for only Daisy's row
.
Please look into the issue, thanks.