Why this query :

SELECT name, page_id from page WHERE strpos(lower(name),lower('coca')) >= 0

returning this error

"error_code": 604, "error_msg": "Your statement is not indexable. The WHERE clause must contain an indexable column. Such columns are marked with * in the tables linked from http://developers.facebook.com/docs/reference/fql "

Yet in the Fql doc is write that: page_id & name fields are Indexables

and why this Query works? I know that isn't on page table but

SELECT name
FROM user
WHERE uid IN (
    SELECT uid2
    FROM friend
    WHERE uid1=me()
)
AND strpos(lower(name),"jo") >=0

Source : http://www.masteringapi.com/tutorials/facebook-fql-how-to-search-partial-strings-similar-to-mysql-like-operator/27/

link|improve this question
feedback

3 Answers

You can't use FQL functions in the WHERE clause. Doing so means the database would have to do a calculation on every row in the table instead of using the index, which in Facebook's case is a pretty large database to be going through every row...

link|improve this answer
feedback

The fields are indexable, but you're searching on derivations of the fields - the values of the lower() function are calculated each time you run the query, so are not indexed. You can probably fool FB into allowing it by adding another clause that operates on the raw field:

WHERE strpos(lower(name), lower('coca')) >= 0 OR (name < 0)
                                             ^^^^^^^^^^^^^
link|improve this answer
can't fool fb like this. I've tried ;) – Mike Sherov Sep 8 '11 at 21:48
feedback

Usage of strpos & lower operators in WHERE clause makes them not indexable.

In the example above:

SELECT name
FROM user
WHERE uid IN (
    SELECT uid2
    FROM friend
    WHERE uid1=me()
)
AND strpos(lower(name),"jo") >=0

It works because you use the indexable field uid. You can use strpos & lower on some subset of data you already have with indexable field.

In your example you don't have indexable field so the error is showing.

You can achive the same result using the Graph API like this:

https://graph.facebook.com/search?q=coca&type=page
link|improve this answer
I know but me i would like use strpos like the operator LIKE %var% in SQL. Can you show me an exemple with page table in FQL ? – fenrules Sep 9 '11 at 5:54
feedback

Your Answer

 
or
required, but never shown

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