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

Databases

SQL BASICS

Challenge Task 2 of 4 In the users table we have columns of id, username, password, first_name and last_name. Select the username and the first and last names and alias them as "Username", "First Name" and "Last Name".

my Code: SELECT username AS first_name, last_name AS Username, First_Name, Last_Name FROM users;

Bummer! Was expecting 3 columns, not 4.

2 Answers

SELECT username AS "Username", first_name AS "First Name", last_name AS "Last Name" FROM users;
Tim Knight
Tim Knight
28,888 Points

I believe you'll actually want to use single quotes otherwise SQL will give you a syntax error.

Essa AlHousani This is the right way.

SELECT username AS "Username", first_name AS "First Name", last_name AS "Last Name" FROM users;

     Nice! You're doing great!