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 trialPablo Caro
4,191 Pointswhat is wrong with my query select * from products WHERE price IN (7.99,9.99,11.99); I can not get passed this
I can not seem to get passed this. the query looks correct. select * from products WHERE price IN (7.99,9.99,11.99);
1 Answer
Steven Parker
231,261 PointsI assume this is for the "Filtering on More than One Condition" challenge. Your query is correct. I pasted it directly from above into the challenge and it passed:
select * from products WHERE price IN (7.99,9.99,11.99);
Perhaps you had a typo in your entry, try it again.
Pablo Caro
4,191 PointsThanks for the help. It was also recommended that I not use Firefox and use Chrome. I am seeing a lot of this issue on Firefox. I will try on chrome and see if this improves. The thing I am not to crazy about is that you can not go forward if the query is not accepted. I know that this is meant to be helpful but....
Jason Anello
Courses Plus Student 94,610 PointsJason Anello
Courses Plus Student 94,610 PointsWhich challenge is this?