Table Join Type.

Joins are used to query data from two or more tables, based on a relationship between columns

Namespace: Wiker.WIDatabase
Assembly: 

Syntax

C#
public enum eJoinType
Visual Basic
Public Enumeration eJoinType
Visual C++
public enum class eJoinType

Members

Member nameValueDescription
None0Not set
Left1LEFT JOIN returns all rows from the left table, even if there are no matches in the right table
Right2RIGHT JOIN returns all the rows from the right table, even if there are no matches in the left table
Normal3Default. Return rows when there is at least one match in both tables

See Also