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

code challenge retrieving a result set.

question:

"From the actors table select the name column using the long form version of the column name i.e. table name followed by the column name."

my code

select actors. name from actors;

error:

"Bummer! You're missing the correct column notation i.e. table_name.column_name."

I can not figure out where I'm going wrong, if someone could shed some light on my mistake please.

3 Answers

I'm not sure what Code Challenge this is from, but it looks like there is a space between the actors. and the name column. Should it say select actors.name from actors; ?

many thanks Cory, it done the trick.

SELECT actors.name FROM actors;