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 trialJan-Philippe Emmanuel Rasay Guerrero
1,567 PointsDatabase Foundations
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.
1 Answer
Andrew Patterson
3,075 PointsThis one was pretty tricky for me because it's a redundant method of getting what you want (probably an old fashioned way to do it). They mean something along the lines of
SELECT actors.name FROM actors;