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 want to retrieve page ids of all those pages whose type is Musician/Band. I tried to retrive it from page table as

SELECT page_id from page where type='MUSICIAN/BAND'

but it is not allowing that.Its giving error:

Your statement is not indexable. The WHERE clause must contain an indexable column.

How to go about this?

share|improve this question

1 Answer

up vote 2 down vote accepted

You simply cannot do that query. You need to include at least one of the indexable columns in your query (page_id or name).

share|improve this answer

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.