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'm trying to compile a complete list but the sources don't agree.

Here's what I've got so far. Let me know if I'm missing anything, or if I've put anything in incorrectly.

Basic format: SELECT [fields] FROM [table] WHERE [conditions]

In the docs: now(), strlen(), substr() and strpos(), IN

Unsure:

  1. AND
  2. OR
  3. LIMIT
  4. ORDER_BY
  5. OFFSET
  6. Anything else?

Also: Joins are definitely out right?

share|improve this question
1  
Any FB employee to confirm the list? – ifaour Sep 30 '11 at 13:10

1 Answer

up vote 8 down vote accepted

functions supported:

me()
now()
rand()
strlen(...)
concat(...)
substr(...)
strpos(...)
lower(...)
upper(...)  

operators supported:

AND, OR, NOT, IN, ><=, +-*/  

OFFSET is a part of LIMIT: offset, rowcount, i.e.

LIMIT 5, 5  

ORDER BY is supported, DESC, ASC is supported also, SELECT * not supported

EDIT: joins not supported but you can do subqueries

share|improve this answer
Wow! This should be in the FB documentation. – Jack Kinsella Sep 30 '11 at 13:34

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.