android - SQLITE - query integer field based on a bit -


is there function, trick, hack make query retrieves values table integer field has special bit set?

no, there no function, trick, or hack.
have use normal operators instead:

select * mytable somecol & (1 << 5) != 0; 

Comments

Popular posts from this blog

asp.net - How to correctly use QUERY_STRING in ISAPI rewrite? -

jsf - "PropertyNotWritableException: Illegal Syntax for Set Operation" error when setting value in bean -

arrays - Algorithm to find ideal starting spot in a circle -