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 Database Foundations Joining Relational Data Between Tables in SQL Keys and Auto-Incrementing Values

Álvaro Massana
Álvaro Massana
14,142 Points

Challenge Task 1

I'm stuck at the first task of the challenge...

What they ask: "Create a genres table called "t_genres" with an auto incrementing primary key called "pk_id" and a unique column called "uk_name" that can't be null. The "uk_name" is a varchar of up to 45 characters."

What I did:

CREATE TABLE t_genres(pk_id AUTO_INCREMENT PRIMARY KEY, uk_name VARCHAR(45) UNIQUE NOT NULL)

The error message says: " Bummer! You're missing the PRIMARY KEY of 'pk_id'."

Do you see what I'm doing wrong?

Thank you in advance for your help.

2 Answers

Jeremy Faith
PLUS
Jeremy Faith
Courses Plus Student 56,696 Points

You need to declare the PRIMARY KEY type, which is INTEGER. So add INTEGER after pk_id and you should be fine.

Álvaro Massana
Álvaro Massana
14,142 Points

Great, it worked! Thank you!