Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I've got a question about FQL: Is it possible to do an ORDER BY on more than one column?

The following FQL query works:

SELECT uid,first_name,last_name 
FROM user 
WHERE uid IN (SELECT uid2 FROM friend WHERE uid1 = 123) 
ORDER BY last_name

However, this one doesn't:

SELECT uid,first_name,last_name
FROM user 
WHERE uid IN (SELECT uid2 FROM friend WHERE uid1 = 123) 
ORDER BY last_name, first_name

It returns:

"error": {
"message": "(#601) Parser error: unexpected ',' at position 122.", 
"type": "OAuthException", 
"code": 601

Is this working as intended, or am I doing something wrong?

share|improve this question
The ORDER BY function isn't well documented. It doesn't look like you're doing anything wrong. I get the same OAuth errors when I try using two columns. Note that some of the married women I am friends with who have their maiden names in quotes appear before the A's. – cpilko Sep 18 '12 at 12:42

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.