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 trialProgress Masocha
4,347 PointsNot sure what to do here
Here are the columns in a users table in an e-commerce site: id, username, password, first_name, last_name.
Run a SQL query to get the two columns you'd need to generate the full names of each customer.
1 Answer
Brendan Whiting
Front End Web Development Techdegree Graduate 84,738 PointsThe two columns we need to make full name are first_name
and last_name
. It wants a SQL query that selects those two columns. Let me know if you need more hints.