Enum sqlparser::ast::SelectItem [−][src]
pub enum SelectItem {
UnnamedExpr(Expr),
ExprWithAlias {
expr: Expr,
alias: Ident,
},
QualifiedWildcard(ObjectName),
Wildcard,
}Expand description
One item of the comma-separated list following SELECT
Variants
UnnamedExpr(Expr)Any expression, not followed by [ AS ] alias
Tuple Fields of UnnamedExpr
0: ExprAn expression, followed by [ AS ] alias
QualifiedWildcard(ObjectName)alias.* or even schema.table.*
Tuple Fields of QualifiedWildcard
0: ObjectNameAn unqualified *
Trait Implementations
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
Auto Trait Implementations
impl RefUnwindSafe for SelectItem
impl Send for SelectItem
impl Sync for SelectItem
impl Unpin for SelectItem
impl UnwindSafe for SelectItem
Blanket Implementations
Mutably borrows from an owned value. Read more