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.

Possible Duplicates:
Does facebook fql contain the sql like operator?
FaceBook query using FQL

Is it possible to use the familiar SQL LIKE operator within Facebook's query language?

I have tried running the query in the FQL test console, but it doesn't work. I'm wondering if I'm missing something or if it is simply not possible?

SELECT link_id from link WHERE url LIKE '%FRLJTjNC8So%' AND owner = '421235'

Go here to test: http://developers.facebook.com/docs/reference/rest/fql.query/

share|improve this question
similar, although this thread might be easier to reference given that the LIKE keyword is in the title. – Alan David Garcia Feb 14 '11 at 20:29
Garcia That's the point of closing as duplicate - this reference will then point to the 'canonical' answer. – Dan J Feb 14 '11 at 20:44

marked as duplicate by Neil Knight, Dan J, ifaour, Christopher, Graviton Feb 17 '11 at 1:41

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

up vote 25 down vote accepted

Solved!

SELECT link_id from link WHERE strpos(url,'FRLJTjNC8So') >=0 AND owner = '421235'

There is no SQL LIKE in FQL. My solution uses FQL STRPOS instead. This works because it searches for the substring FRLJTjNC8So within the URL field.

The following thread was helpful

Does facebook fql contain the sql like operator?

share|improve this answer
1  
Huge. Tremendous. Awesome find! =^D – Jordan Feldstein Sep 18 '11 at 21:22
+++++++1 =) Thanks! I realised this was in the docs! – Viet Aug 7 '12 at 0:59
2  
To do case-insensitive search, lower() method is available, and make sure that the second parameter (the search value or "FRLJTjNC8So" in the example above) is also using small letters. For example: [SELECT status_id, message FROM status WHERE uid=1207059 AND strpos(lower(message), "ben") >= 0] (developers.facebook.com/tool/…) – Jim Chang Sep 14 '12 at 6:20

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