Operators in SQLite
What operators I can use in SQLite
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Pravin MorePosted Oct 20, 2011, 2:41 AM
please here is intro of some operators in SQLite it might help you.
* + is unary operator, applied to strings, numbers, blobs or NULL and it always returns a result with the same value as the operand.
* for Equals either = or ==.
* For not Equals != or <>
* || for concatenation.
* % Modulo ----- left operand modulo right operand.
Thank You,
Pravin.
Prabhu RajaPosted Oct 20, 2011, 1:21 AM
http://www.sqlite.org/search?q=Operators
Check out this SQLite Documentation
Priya LingePosted Oct 20, 2011, 1:07 AM
Please check below link to understand the operators in SQLite.
http://www.sqlite.org/lang_expr.html#binaryops
Hope this will help you.
Thanks.