In the documentation it mention only AND and NOT. The reason I'm trying to use OR is to break a large results sets into multiple queries and make sure the queries doesn't fail.
For example: This query return one result:
SELECT post_id FROM stream WHERE (source_id = '100000462790227' ) AND strpos(lower(message),'sweet') >=0 AND (filter_key = 'others')
But when I added OR on the filter key I got empty results
SELECT post_id FROM stream WHERE (source_id = '100000462790227' ) AND strpos(lower(message),'sweet') >=0 AND (filter_key = 'others' OR filter_key = 'nf' )
Is it the OR, or do I do something else wrong?