Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Development Tools

Adam Duffield
Adam Duffield
30,494 Points

SQL issue on task, constrain foreign keys?

Hi, The task is asking me to do this:

Alter the "t_movies" table to add a foreign key called "fk_genre_id" and constrain it to reference the "t_genres" "pk_id".

Here is my code:

ALTER TABLE t_movies ADD COLUMN fk_genre_id, ADD CONSTRAINT FOREIGN KEY (fk_genre_id) REFERENCES (pk_id);

Any idea's why the task keeps rejecting my code and saying "Bummer! You're missing the 'fk_genre_id' column."?

Thanks,

Adam

2 Answers

Hi Adam,

Try REFERENCES t_genres (pk_id);

Jeff

Adam Duffield
Adam Duffield
30,494 Points

Not working for me Jeff :(

Can I have a link to the code challenge?

Adam Duffield
Adam Duffield
30,494 Points

Think i've managed to sort it with that actually :) thanks