pub enum JoinKind {
Inner,
Left,
Right,
Full,
Semi,
Anti,
Cross,
Positional,
}Expand description
Which join.
Variants§
Inner
[INNER] JOIN.
Left
LEFT [OUTER] JOIN.
Right
RIGHT [OUTER] JOIN.
Full
FULL [OUTER] JOIN.
Semi
SEMI JOIN.
Anti
ANTI JOIN.
Cross
CROSS JOIN.
Positional
POSITIONAL JOIN, which is DuckDB’s own and pairs rows by ordinal.
Trait Implementations§
impl Copy for JoinKind
impl Eq for JoinKind
impl StructuralPartialEq for JoinKind
Auto Trait Implementations§
impl Freeze for JoinKind
impl RefUnwindSafe for JoinKind
impl Send for JoinKind
impl Sync for JoinKind
impl Unpin for JoinKind
impl UnsafeUnpin for JoinKind
impl UnwindSafe for JoinKind
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more