Enum JoinOperatorType
- Namespace
- YndigoBlue.Velocity.Enums
- Assembly
- YndigoBlue.Velocity.dll
Specifies the comparison operator used in JOIN conditions.
public enum JoinOperatorType
Fields
Equals = 1Equality comparison operator (=) for matching rows with equal values.
NotEquals = 2Inequality comparison operator (!= or <>) for matching rows with different values.
LessThan = 3Less than comparison operator (<) for matching rows where the left value is smaller.
GreatherThan = 4Greater than comparison operator (>) for matching rows where the left value is larger.
LessThanOrEqualTo = 5Less than or equal to comparison operator (<=) for range-based joins.
GreaterThanOrEqualTo = 6Greater than or equal to comparison operator (>=) for range-based joins.
Remarks
JOIN operators define how rows from different tables are matched during a join operation. While equality joins are most common, other operators enable range-based and inequality joins.