@Test
public void test_not_in() {
Condition c = Cnd.where("nm", " Not iN ", new int[]{1, 2, 3});
String exp = "WHERE nm NOT IN (1,2,3)";
assertEquals(exp, c.toSql(null).trim());
}
@Test
public void test_add_other_or_method_by_github_issuse_148() {
SqlExpression e1 = Cnd.exps("city", "=", "beijing").or("city", "=", "shanghai").or("city", "=", "guangzhou").or("city", "=", "shenzhen");