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 trialDenis Harchenko
Courses Plus Student 6,245 PointsOrder "actors" by "name" in reversed alphabetical order.
Hi,
I am stack on this code challenge.
This is my query:
SELECT * FROM actors ORDER BY name DESC;
When I press "enter" It tells me that my result is in the wrong order.
I tried this query:
SELECT * FROM actors ORDER BY name ASC;
Same result.
What am I doing wrong?
12 Answers
Jacob Herper
94,150 PointsYour query looks correct to me, maybe it's a problem with the code challenge itself. Was having some issues with PHP code challenges recently, maybe it's a general problem they need to look into.
Denis Harchenko
Courses Plus Student 6,245 PointsIt passed now, even that I didn't change anything. It is a code challenge problem. Any idea how to report about it?
Pete Arevalo
12,653 Pointssame thing is happening to me right now
B Nawaz
13,402 PointsHere too, giving the same answer as yourself and confused as to why it isn't working! Maybe we should email support?
B Nawaz
13,402 PointsUsed Chrome Canary and seemed to work, had issues when Ad Block Pro caused issues in the past, so this may be something for people to check!
B Nawaz
13,402 PointsUsed Chrome Canary and seemed to work, had issues when Ad Block Pro caused issues in the past, so this may be something for people to check!
Jacqueline Boltik
Courses Plus Student 11,153 PointsI'm having the same issue, only I haven't been able to get it to pass on Chrome or Firefox. Going to email support so hopefully this doesn't happen to anyone else.
Travis Johnston
12,653 PointsStill an issue. I just tried it a few times and eventually it passed... (using Chrome)
SnaggaTron S
1,396 PointsHey guys do you know if we have time frame when this will be fixed?
If not I will log a call with Support as well
sean conner
6,357 PointsAll fixed!
SnaggaTron S
1,396 Pointsnice one Sean C
MUZ140719 Hillary Madombwe
5,576 PointsSELECT * FROM actors ORDER BY name DESC;