JoinTable

Type Alias JoinTable 

Source
pub type JoinTable<'until_build, 'post_build> = JoinTableData<'until_build, 'post_build>;
Expand description

Type alias for JoinTableData.

As all databases use currently the same fields, a type alias is sufficient.

Aliased Type§

pub struct JoinTable<'until_build, 'post_build> {
    pub join_type: JoinType,
    pub table_name: &'until_build str,
    pub join_alias: &'until_build str,
    pub join_condition: Cow<'until_build, Condition<'post_build>>,
}

Fields§

§join_type: JoinType

Type of the join operation

§table_name: &'until_build str

Name of the join table

§join_alias: &'until_build str

Alias for the join table

§join_condition: Cow<'until_build, Condition<'post_build>>

Condition to apply the join on