Query table to the right blanks out

Hi,

Every time I type the first two steps in, the second step makes my query page blank out. I tried doing some troubleshooting and am scratching my head on this one. Where did I go wrong?

CREATE TABLE friends (
id INTEGER,
name TEXT,
birthday DATE
);
INSERT INTO friends (id, name, birthday)
VALUES (1, ‘Ororo Munroe’, ‘1940-05-30’);
SELECT *
FROM friends;

https://www.codecademy.com/paths/data-analyst/tracks/dsf-learn-sql/modules/dsinf-learn-sql-manipulation/projects/learn_sql_create_table

Hello @code9377821997 ,

Check the quotes on your birthday value.

When I copied & pasted your INSERT statement into the lesson, it didn’t appear correctly.

INSERT INTO friends (id, name, birthday)
VALUES (1, ‘Ororo Munroe’, ‘1940-05-30’);

1 Like