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

Databases

Dmitry Karamin
Dmitry Karamin
10,099 Points

Why not working?

The insert code seems to be well. But there is a mistake about presence of 'actors' table?

INSERT INTO actors VALUES ('Michael J.Fox');

1 Answer

Robert Esteves
Robert Esteves
1,301 Points

Dimitry,

unless your table has only one field your insert statement is going to fail. Your are using the defaults. You need to specify the target fields. For example: INSERT INTO actors (FirstName, LastName, etc) VALUES('John', 'Doe', 'xxx');

Hope this helps,

Robert

Dmitry Karamin
Dmitry Karamin
10,099 Points

No that's wrong I've inserted my code once again and it works. Anyway thank you