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

General Discussion

Creating a Table in MySql

Would someone from Treehouse please address this issue? Issues like this will make me cancel my Treehouse account.

I am having trouble with the following question:

Create a table called "products" with a VARCHAR column named "name", a TEXT column named "description" and a INTEGER "stock_count" column. The name should be up to 100 characters long.

I am entering the following SQL statement:

CREATE TABLE products (name VARCHAR(100), description TEXT, stock_count INTEGER);

In turn I receive the following error message:

SQL Error: table products already exists

Please help me. Thank you.

Probably your table already exists as SQL informs you, have you tried another name or putting it between quotes.

At least your Query is valid i tried it myself :)

1 Answer

Thanks! I just had to keep playing around with my SQL and finally got it to pass with:

CREATE TABLE products (name VARCHAR(100) NOT NULL, stock_count INTEGER NULL, description TEXT NULL);

I guess they want you to specify whether or not an attribute is null-supported or not.