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
Post a Comment