All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ast.expr.SqlSubQueryPredicate.kt Maven / Gradle / Ivy

There is a newer version: 1.1.10
Show newest version
package ast.expr

/**
 * sql语法树:子查询谓词枚举
 * @property predicate String 子查询谓词
 */
enum class SqlSubQueryPredicate(val predicate: String) {
    EXISTS("EXISTS"),
    NOT_EXISTS("NOT EXISTS"),
    ANY("ANY"),
    ALL("ALL"),
    SOME("SOME")
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy