Struct sea_query::query::WindowStatement
source · [−]pub struct WindowStatement { /* private fields */ }
Expand description
Implementations
sourceimpl WindowStatement
impl WindowStatement
sourcepub fn new() -> Self
pub fn new() -> Self
Construct a new WindowStatement
pub fn take(&mut self) -> Self
sourcepub fn partition_by<T>(col: T) -> Selfwhere
T: IntoColumnRef,
pub fn partition_by<T>(col: T) -> Selfwhere
T: IntoColumnRef,
Construct a new WindowStatement
with PARTITION BY column
sourcepub fn partition_by_custom<T>(col: T) -> Selfwhere
T: ToString,
pub fn partition_by_custom<T>(col: T) -> Selfwhere
T: ToString,
Construct a new WindowStatement
with PARTITION BY custom
sourcepub fn order_by<T>(col: T, order: Order) -> Selfwhere
T: IntoColumnRef,
pub fn order_by<T>(col: T, order: Order) -> Selfwhere
T: IntoColumnRef,
Construct a new WindowStatement
with ORDER BY column
sourcepub fn order_by_custom<T>(col: T, order: Order) -> Selfwhere
T: ToString,
pub fn order_by_custom<T>(col: T, order: Order) -> Selfwhere
T: ToString,
Construct a new WindowStatement
with ORDER BY custom
sourcepub fn frame_start(&mut self, type: FrameType, start: Frame) -> &mut Self
pub fn frame_start(&mut self, type: FrameType, start: Frame) -> &mut Self
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""#
);
sourcepub fn frame_between(
&mut self,
type: FrameType,
start: Frame,
end: Frame
) -> &mut Self
pub fn frame_between(
&mut self,
type: FrameType,
start: Frame,
end: Frame
) -> &mut Self
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""#
);
Trait Implementations
sourceimpl Clone for WindowStatement
impl Clone for WindowStatement
sourcefn clone(&self) -> WindowStatement
fn clone(&self) -> WindowStatement
Returns a copy of the value. Read more
1.0.0 · sourceconst fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for WindowStatement
impl Debug for WindowStatement
sourceimpl Default for WindowStatement
impl Default for WindowStatement
sourceimpl OrderedStatement for WindowStatement
impl OrderedStatement for WindowStatement
sourcefn clear_order_by(&mut self) -> &mut Self
fn clear_order_by(&mut self) -> &mut Self
Clear order expressions
sourcefn order_by<T>(&mut self, col: T, order: Order) -> &mut Selfwhere
T: IntoColumnRef,
fn order_by<T>(&mut self, col: T, order: Order) -> &mut Selfwhere
T: IntoColumnRef,
Order by column. Read more
sourcefn order_by_tbl<T, C>(&mut self, table: T, col: C, order: Order) -> &mut Selfwhere
T: IntoIden,
C: IntoIden,
fn order_by_tbl<T, C>(&mut self, table: T, col: C, order: Order) -> &mut Selfwhere
T: IntoIden,
C: IntoIden,
👎Deprecated since 0.9.0: Please use the [
OrderedStatement::order_by
] with a tuple as [ColumnRef
]sourcefn order_by_expr(&mut self, expr: SimpleExpr, order: Order) -> &mut Self
fn order_by_expr(&mut self, expr: SimpleExpr, order: Order) -> &mut Self
Order by
SimpleExpr
.sourcefn order_by_customs<T>(&mut self, cols: Vec<(T, Order)>) -> &mut Selfwhere
T: ToString,
fn order_by_customs<T>(&mut self, cols: Vec<(T, Order)>) -> &mut Selfwhere
T: ToString,
Order by custom string.
sourcefn order_by_columns<T>(&mut self, cols: Vec<(T, Order)>) -> &mut Selfwhere
T: IntoColumnRef,
fn order_by_columns<T>(&mut self, cols: Vec<(T, Order)>) -> &mut Selfwhere
T: IntoColumnRef,
Order by vector of columns.
sourcefn order_by_table_columns<T, C>(&mut self, cols: Vec<(T, C, Order)>) -> &mut Selfwhere
T: IntoIden,
C: IntoIden,
fn order_by_table_columns<T, C>(&mut self, cols: Vec<(T, C, Order)>) -> &mut Selfwhere
T: IntoIden,
C: IntoIden,
👎Deprecated since 0.9.0: Please use the [
OrderedStatement::order_by_columns
] with a tuple as [ColumnRef
]sourcefn order_by_with_nulls<T>(
&mut self,
col: T,
order: Order,
nulls: NullOrdering
) -> &mut Selfwhere
T: IntoColumnRef,
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
sourcefn order_by_expr_with_nulls(
&mut self,
expr: SimpleExpr,
order: Order,
nulls: NullOrdering
) -> &mut Self
fn order_by_expr_with_nulls(
&mut self,
expr: SimpleExpr,
order: Order,
nulls: NullOrdering
) -> &mut Self
Order by
SimpleExpr
with nulls order option.sourcefn order_by_customs_with_nulls<T>(
&mut self,
cols: Vec<(T, Order, NullOrdering)>
) -> &mut Selfwhere
T: ToString,
fn order_by_customs_with_nulls<T>(
&mut self,
cols: Vec<(T, Order, NullOrdering)>
) -> &mut Selfwhere
T: ToString,
Order by custom string with nulls order option.
sourcefn order_by_columns_with_nulls<T>(
&mut self,
cols: Vec<(T, Order, NullOrdering)>
) -> &mut Selfwhere
T: IntoColumnRef,
fn order_by_columns_with_nulls<T>(
&mut self,
cols: Vec<(T, Order, NullOrdering)>
) -> &mut Selfwhere
T: IntoColumnRef,
Order by vector of columns with nulls order option.
sourceimpl OverStatement for WindowStatement
impl OverStatement for WindowStatement
sourcefn partition_by<T>(&mut self, col: T) -> &mut Selfwhere
T: IntoColumnRef,
fn partition_by<T>(&mut self, col: T) -> &mut Selfwhere
T: IntoColumnRef,
Partition by column.
sourcefn partition_by_customs<T>(&mut self, cols: Vec<T>) -> &mut Selfwhere
T: ToString,
fn partition_by_customs<T>(&mut self, cols: Vec<T>) -> &mut Selfwhere
T: ToString,
Partition by custom string.
sourcefn partition_by_columns<T>(&mut self, cols: Vec<T>) -> &mut Selfwhere
T: IntoColumnRef,
fn partition_by_columns<T>(&mut self, cols: Vec<T>) -> &mut Selfwhere
T: IntoColumnRef,
Partition by vector of columns.
Auto Trait Implementations
impl !RefUnwindSafe for WindowStatement
impl Send for WindowStatement
impl Sync for WindowStatement
impl Unpin for WindowStatement
impl !UnwindSafe for WindowStatement
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more