接口 NotExists<Children>

类型参数:
Children - 继承的类型
所有已知子接口:
Condition<Children>

public interface NotExists<Children>
notExists
从以下版本开始:
0.0.2
作者:
zeng
  • 方法详细资料

    • notExists

      Children notExists(String sqlValue, Object... values)
      拼接 NOT EXISTS ( sql语句 )

      !! sql 注入方法 !!

      例: notExists("select id from table where age = 1")

      参数:
      sqlValue - sql语句
      values - 数据数组
      返回:
      children
    • notExists

      Children notExists(boolean condition, String sqlValue, Object... values)
      拼接 NOT EXISTS ( sql语句 )

      !! sql 注入方法 !!

      例: notExists("select id from table where age = 1")

      参数:
      condition - 执行条件
      sqlValue - sql语句
      values - 数据数组
      返回:
      children