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

ast.statement.truncate.SqlTruncate.kt Maven / Gradle / Ivy

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

import ast.expr.SqlExpr
import ast.statement.SqlStatement

/**
 * sql语法树:清空表语句
 * @property table SqlExpr? 操作的表
 */
data class SqlTruncate(var table: SqlExpr? = null) : SqlStatement




© 2015 - 2024 Weber Informatics LLC | Privacy Policy