Skip to content

JoinType

Jacob Spitzer edited this page Aug 28, 2022 · 2 revisions

JoinType Enum

SQL Join Type enumeration

public enum JoinType

Fields

FullJoin 3
FULL (OUTER) JOIN: Returns all records when there is a match in either left or right table

InnerJoin 0
(INNER) JOIN: Returns records that have matching values in both tables

LeftJoin 1
LEFT (OUTER) JOIN: Returns all records from the left table, and the matched records from the right table

RightJoin 2
RIGHT (OUTER) JOIN: Returns all records from the right table, and the matched records from the left table

Clone this wiki locally