Enum sql_ast::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
An expression, followed by [ AS ] alias
QualifiedWildcard(ObjectName)alias.* or even schema.table.*
An 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 SelectItemimpl Send for SelectItemimpl Sync for SelectItemimpl Unpin for SelectItemimpl UnwindSafe for SelectItemBlanket Implementations
Mutably borrows from an owned value. Read more