pub trait IntoCommonTableExpression<'a> {
    // Provided method
    fn into_cte(
        self,
        identifier: impl Into<Cow<'a, str>>
    ) -> CommonTableExpression<'a>
       where Self: Into<SelectQuery<'a>> { ... }
}
Expand description

Conversion into a common table expression.

Used together with the Select#with method.

Provided Methods§

source

fn into_cte( self, identifier: impl Into<Cow<'a, str>> ) -> CommonTableExpression<'a>where Self: Into<SelectQuery<'a>>,

Implementors§