Description
Describe the bug
First, thank you for creating this course. It has been a real joy to learn in this hand's on way.
At present, I am in the process of working through the "Learn Relational Databases by Building a Mario Database" and am repeatedly getting stuck on the "Update Daisy's 'favorite_color'" lesson.
To Reproduce
Steps to reproduce the behavior:
- Reset the tutorial (id: 690)
- Log out and back in to the mario_database
- Run "SELECT * FROM characters;"
TERMINAL OUTPUT:
+--------------+-----------+------------------+----------------+
| character_id | name | homeland | favorite_color |
+--------------+-----------+------------------+----------------+
| 1 | Mario | Mushroom Kingdom | Red |
| 2 | Luigi | Mushroom Kingdom | Green |
| 3 | Peach | Mushroom Kingdom | Pink |
| 4 | Toadstool | Mushroom Kingdom | Red |
| 5 | Bowser | Mushroom Kingdom | Green |
+--------------+-----------+------------------+----------------+
- Go back to the last step (id: 670, Add Daisy and Yoshi Rows) and reinsert the data (at this point I just copy/paste the command given in the hint)
- Run "SELECT * FROM characters;"
TERMINAL OUTPUT:
+--------------+-----------+------------------+----------------+
| character_id | name | homeland | favorite_color |
+--------------+-----------+------------------+----------------+
| 1 | Mario | Mushroom Kingdom | Red |
| 2 | Luigi | Mushroom Kingdom | Green |
| 3 | Peach | Mushroom Kingdom | Pink |
| 4 | Toadstool | Mushroom Kingdom | Red |
| 5 | Bowser | Mushroom Kingdom | Green |
| 6 | Daisy | Sarasaland | Yellow |
| 7 | Yoshi | Dinosaur Land | Green |
+--------------+-----------+------------------+----------------+
- UPDATE the 'Daisy' row by copy/pasting the command that is given in the hint
TERMINAL OUTPUT:
mario_database=> UPDATE 1
7: Run "SELECT * FROM characters;"
TERMINAL OUTPUT:
+--------------+-----------+------------------+----------------+
| character_id | name | homeland | favorite_color |
+--------------+-----------+------------------+----------------+
| 1 | Mario | Mushroom Kingdom | Red |
| 2 | Luigi | Mushroom Kingdom | Green |
| 3 | Peach | Mushroom Kingdom | Pink |
| 4 | Toadstool | Mushroom Kingdom | Red |
| 5 | Bowser | Mushroom Kingdom | Green |
| 7 | Yoshi | Dinosaur Land | Green |
| 6 | Daisy | Sarasaland | Orange |
+--------------+-----------+------------------+----------------+
- Select the "Run" button
- Prompt says: "characters" should have the correct rows for "Daisy" and "Yoshi"
Expected behavior
Given that I have completed what the task requires, Daisy's favorite color is now "Orange", I would expect to advance to the next lesson.
Desktop:
- Platform: Mac
- OS: MacOS Monterey
- Version 12.1
VSCode:
- Version 1.63.2
Node:
- Version v16.13.1
Git:
- Version 2.32.0 (Apple Git-132)
Additional context
I hope this gives all the context you may need. I appreciate any help in getting past this lesson so that I may complete the course. Happy to provide any further information if necessary.