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 trialLukasz Walczak
6,620 PointsDid you select from "users" table? I DID :)
SELECT first_name, last_name FROM users WHERE id = 'wig_lady';
first_name last_name
that's the result of my query it looks fine to me
any ideas what might be wrong here
1 Answer
Jennifer Nordell
Treehouse TeacherHi there! This error might be a bit hard to figure out. Yes, you selected from the users
table, but the challenge asks you to return the results where the username
is equal to "wig_lady", but you're comparing it to the id
.
Hope this helps!
edited for additional note
I believe you're referring to this challenge
Lukasz Walczak
6,620 PointsLukasz Walczak
6,620 PointsIt seems that I have been deceived by the SQL Playground :) And myself too ;)
Many thanks for help!