pub struct WindowStatement { /* private fields */ }
Expand description

Implementations§

§

impl WindowStatement

pub fn new() -> WindowStatement

Construct a new WindowStatement

pub fn take(&mut self) -> WindowStatement

pub fn partition_by<T>(col: T) -> WindowStatementwhere T: IntoColumnRef,

Construct a new WindowStatement with PARTITION BY column

pub fn partition_by_custom<T>(col: T) -> WindowStatementwhere T: ToString,

Construct a new WindowStatement with PARTITION BY custom

pub fn order_by<T>(col: T, order: Order) -> WindowStatementwhere T: IntoColumnRef,

Construct a new WindowStatement with ORDER BY column

pub fn order_by_custom<T>(col: T, order: Order) -> WindowStatementwhere T: ToString,

Construct a new WindowStatement with ORDER BY custom

pub fn frame_start( &mut self, type: FrameType, start: Frame ) -> &mut WindowStatement

frame clause for frame_start

Examples:
use sea_query::{tests_cfg::*, *};

let query = Query::select()
    .from(Char::Table)
    .expr_window_as(
        Expr::col(Char::Character),
        WindowStatement::partition_by(Char::FontSize)
            .frame_start(FrameType::Rows, Frame::UnboundedPreceding)
            .take(),
        Alias::new("C"))
    .to_owned();

assert_eq!(
    query.to_string(MysqlQueryBuilder),
    r#"SELECT `character` OVER ( PARTITION BY `font_size` ROWS UNBOUNDED PRECEDING ) AS `C` FROM `character`"#
);
assert_eq!(
    query.to_string(PostgresQueryBuilder),
    r#"SELECT "character" OVER ( PARTITION BY "font_size" ROWS UNBOUNDED PRECEDING ) AS "C" FROM "character""#
);
assert_eq!(
    query.to_string(SqliteQueryBuilder),
    r#"SELECT "character" OVER ( PARTITION BY "font_size" ROWS UNBOUNDED PRECEDING ) AS "C" FROM "character""#
);

pub fn frame_between( &mut self, type: FrameType, start: Frame, end: Frame ) -> &mut WindowStatement

frame clause for BETWEEN frame_start AND frame_end

Examples:
use sea_query::{tests_cfg::*, *};

let query = Query::select()
    .from(Char::Table)
    .expr_window_as(
        Expr::col(Char::Character),
        WindowStatement::partition_by(Char::FontSize)
            .frame_between(FrameType::Rows, Frame::UnboundedPreceding, Frame::UnboundedFollowing)
            .take(),
        Alias::new("C"))
    .to_owned();

assert_eq!(
    query.to_string(MysqlQueryBuilder),
    r#"SELECT `character` OVER ( PARTITION BY `font_size` ROWS BETWEEN UNBOUNDED PRECEDING AND UNBOUNDED FOLLOWING ) AS `C` FROM `character`"#
);
assert_eq!(
    query.to_string(PostgresQueryBuilder),
    r#"SELECT "character" OVER ( PARTITION BY "font_size" ROWS BETWEEN UNBOUNDED PRECEDING AND UNBOUNDED FOLLOWING ) AS "C" FROM "character""#
);
assert_eq!(
    query.to_string(SqliteQueryBuilder),
    r#"SELECT "character" OVER ( PARTITION BY "font_size" ROWS BETWEEN UNBOUNDED PRECEDING AND UNBOUNDED FOLLOWING ) AS "C" FROM "character""#
);

pub fn frame( &mut self, type: FrameType, start: Frame, end: Option<Frame> ) -> &mut WindowStatement

frame clause

Trait Implementations§

§

impl Clone for WindowStatement

§

fn clone(&self) -> WindowStatement

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
§

impl Debug for WindowStatement

§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
§

impl Default for WindowStatement

§

fn default() -> WindowStatement

Returns the “default value” for a type. Read more
§

impl OrderedStatement for WindowStatement

§

fn clear_order_by(&mut self) -> &mut WindowStatement

Clear order expressions
§

fn order_by<T>(&mut self, col: T, order: Order) -> &mut Selfwhere T: IntoColumnRef,

Order by column. Read more
§

fn order_by_expr(&mut self, expr: SimpleExpr, order: Order) -> &mut Self

Order by SimpleExpr.
§

fn order_by_customs<I, T>(&mut self, cols: I) -> &mut Selfwhere T: ToString, I: IntoIterator<Item = (T, Order)>,

Order by custom string.
§

fn order_by_columns<I, T>(&mut self, cols: I) -> &mut Selfwhere T: IntoColumnRef, I: IntoIterator<Item = (T, Order)>,

Order by vector of columns.
§

fn order_by_with_nulls<T>( &mut self, col: T, order: Order, nulls: NullOrdering ) -> &mut Selfwhere T: IntoColumnRef,

Order by column with nulls order option. Read more
§

fn order_by_expr_with_nulls( &mut self, expr: SimpleExpr, order: Order, nulls: NullOrdering ) -> &mut Self

Order by SimpleExpr with nulls order option.
§

fn order_by_customs_with_nulls<I, T>(&mut self, cols: I) -> &mut Selfwhere T: ToString, I: IntoIterator<Item = (T, Order, NullOrdering)>,

Order by custom string with nulls order option.
§

fn order_by_columns_with_nulls<I, T>(&mut self, cols: I) -> &mut Selfwhere T: IntoColumnRef, I: IntoIterator<Item = (T, Order, NullOrdering)>,

Order by vector of columns with nulls order option.
§

impl OverStatement for WindowStatement

§

fn partition_by<T>(&mut self, col: T) -> &mut Selfwhere T: IntoColumnRef,

Partition by column.
§

fn partition_by_customs<I, T>(&mut self, cols: I) -> &mut Selfwhere T: ToString, I: IntoIterator<Item = T>,

Partition by custom string.
§

fn partition_by_columns<I, T>(&mut self, cols: I) -> &mut Selfwhere T: IntoColumnRef, I: IntoIterator<Item = T>,

Partition by vector of columns.

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more