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 trialSean Lonergan
2,259 PointsDon't understand this 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.
5 Answers
Sharon Walls
9,234 PointsIt sounds like you need to perform a SELECT query to show the actor's name list in the actor's table.
Elliott Frazier
Courses Plus Student 9,647 PointsIf you show the code we'll be able to help you a lot better.
Chase Lee
29,275 PointsWhat language is this?
Sean Lonergan
2,259 PointsSQL
Andrew Chalkley
Treehouse Guest TeacherDid you get it yet Sean?
Mosses Akizian
8,136 PointsYou need to add table name followed by column name.
SELECT actors.name FROM actors;