Unary operations
Use
these unary operations to determine the sign of the value; such as:
var res = db.ExecuteQuery("SELECT PaidUser WHERE -CurrentBalance
< -20");
or, for example
var res = db.ExecuteQuery("SELECT PaidUser WHERE !(CurrentBalance
= 20)");