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).