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

Development Tools

Denis Harchenko
PLUS
Denis Harchenko
Courses Plus Student 6,245 Points

Order "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
Jacob Herper
94,150 Points

Your 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
PLUS
Denis Harchenko
Courses Plus Student 6,245 Points

It passed now, even that I didn't change anything. It is a code challenge problem. Any idea how to report about it?

Pete Arevalo
Pete Arevalo
12,653 Points

same thing is happening to me right now

B Nawaz
B Nawaz
13,402 Points

Here too, giving the same answer as yourself and confused as to why it isn't working! Maybe we should email support?

B Nawaz
B Nawaz
13,402 Points

Used 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
B Nawaz
13,402 Points

Used 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!

I'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
Travis Johnston
12,653 Points

Still an issue. I just tried it a few times and eventually it passed... (using Chrome)

SnaggaTron S
SnaggaTron S
1,396 Points

Hey 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

All fixed!

SELECT * FROM actors ORDER BY name DESC;