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 trialAdam Duffield
30,494 PointsSQL 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
Jeff Busch
19,287 PointsHi Adam,
Try REFERENCES t_genres (pk_id);
Jeff
Adam Duffield
30,494 PointsNot working for me Jeff :(
Jeff Busch
19,287 PointsCan I have a link to the code challenge?
Adam Duffield
30,494 PointsThink i've managed to sort it with that actually :) thanks