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 trialKeith Puddefoot
2,844 Pointscode 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
Unsubscribed User
5,931 PointsI'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; ?
Keith Puddefoot
2,844 Pointsmany thanks Cory, it done the trick.
MUZ1407800 Doubt Milazi
11,813 PointsSELECT actors.name FROM actors;