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

Keys and Auto-incrementing quiz in Database foundations

I am so confused. In the second question about altering the t_movies table in this quiz I'm guessing I'm missing something because this is what I typed at it was considered wrong:

ALTER t_movies ADD COLUMN pk_id INTEGER AUTO_INCREMENT PRIMARY FIRST

What am I missing

2 Answers

I'm sorry I really should work for my answers more before posting on the forums. I figured it out. I was missing the TABLE key word near the beginning.

I can see this is an old post but I had a few issues with this, I don't think the question was explained very well. So just in case anyone else ends up here and are having similar problems, the working answer is as follows:

ALTER TABLE t_movies ADD COLUMN pk_id INTEGER AUTO_INCREMENT PRIMARY KEY FIRST