Struct sql_ast::ast::Cte [−][src]
pub struct Cte { pub alias: TableAlias, pub query: Query, }
Expand description
A single CTE (used after WITH
): alias [(col1, col2, ...)] AS ( query )
The names in the column list before AS
, when specified, replace the names
of the columns returned by the query. The parser does not validate that the
number of columns in the query matches the number of columns in the query.
Fields
alias: TableAlias
query: Query
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for Cte
impl UnwindSafe for Cte
Blanket Implementations
Mutably borrows from an owned value. Read more