JoinClause in oxide_sql_core::ast - Rust

pub struct JoinClause {
    pub join_type: JoinType,
    pub table: TableRef,
    pub on: Option<Expr>,
    pub using: Vec<String>,
}
Expand description

A JOIN clause.

The type of join.

The table to join.

The join condition (for non-CROSS joins).

USING columns (alternative to ON).

Source§
Source§
Source§
Source§
Source§

Tests for self and other values to be equal, and is used by ==.

1.0.0 · Source§

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.

Source§

§
§
§
§
§
§