Table of Contents

TJoinType Enumeration

Specifies the type of SQL JOIN to generate between two relations.

Syntax

Unit: Aurelius.Sql.BaseTypes

Members

Name Value Description
Inner 0 Generates an INNER JOIN, returning only rows with matching keys in both relations.
Left 1 Generates a LEFT OUTER JOIN, returning all rows from the left relation and matched rows from the right relation (or NULL when there is no match).