Stuck on learn-relational-databases-by-building-a-mario-database/

I am stuck on this question, I have no idea what to do… The question is

`|birthday |height |weight |
| — | — | — |
|1981-07-09 |155 |64.5 |

Add a row to more_info with the above data for Mario using the INSERT INTO and VALUES keywords. Be sure to set his character_id when adding him. Also, DATE values need a string with the format: 'YYYY-MM-DD' .`

I tried this : SET character_id=1 INSERT INTO more_info(birthday,height,weight) VALUES('1981-07-09',155,64.5);
Please help…

Never mind! I got it!

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.