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

ast.statement.select.SqlSelectItem.kt Maven / Gradle / Ivy

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

import ast.SqlNode
import ast.expr.SqlExpr

/**
 * sql语法树:查询项
 * @property expr SqlExpr 查询表达式
 * @property alias String? 别名
 */
data class SqlSelectItem(val expr: SqlExpr, val alias: String? = null) : SqlNode




© 2015 - 2024 Weber Informatics LLC | Privacy Policy