easy-es/docs/notIn.md
2022-03-17 11:01:44 +08:00

387 B

notIn(R column, Collection<?> value)
notIn(boolean condition, R column, Collection<?> value)
  • 字段 not in (value.get(0), value.get(1), ...)
  • 例: notIn("age",{1,2,3})--->age not in (1,2,3)
notIn(R column, Object... values)
notIn(boolean condition, R column, Object... values)
  • 字段 not in (v0, v1, ...)
  • 例: notIn("age", 1, 2, 3)--->age not in (1,2,3)