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 Finding the Data You Want Searching Tables with 'WHERE'

In our e-commerce database we have a users table with the columns id, username, password, first_name and last_name.

WRITE SQL QUERY

1 Answer

Maxwell Newberry
Maxwell Newberry
7,693 Points

You are given the column names, you just need to write a query that matches the name.

  1. The key word retrieves data from the database, which tells us SELECT is the correct statement we need to use.
  2. The challenge outlines that we only want to select the first and last name from the rows, so for the select fields we want to specify only first_name and last_name delimiter by a comma.
  3. We're of course retrieve data FROM the users table, and we want to specific that we only want data WHERE the username matches 'wig_lady'. Therefore, our query will finish to become:
SELECT `first_name`, `last_name` FROM `users` WHERE `username` = 'wig_lady';