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 Database Foundations Reading Data from Databases with SQL Querying Tables

Brian Schmitz
Brian Schmitz
11,167 Points

Where am I wrong here:

The directions are:

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.

I have: SELECT table_name.column_name FROM actors;

2 Answers

Matin Shoghi
Matin Shoghi
10,978 Points

Hi there,

It is worded in a weird way but in other words, you have to name using the long column notation (actors.name) so the answer should be:

select actors.name from actors;

SELECT actors.name FROM actors;