Show / Hide Table of Contents

    SqlBinaryOperator Enum

    .NET Standard 2.x | Current Version (1.0.1)

    0.5.0-alpha 1.0.1 (current)

    The operators that are commonly used in SQL.

    Namespace: SnapObjects.Data

    Assembly: SnapObjects.Data.dll

    Syntax

       public enum SqlBinaryOperator;
    

    Fields

    Name Description
    Equals =
    NotEquals <>
    LessThan <
    LessThanOrEquals <=
    GreaterThan> >
    GreaterThanOrEquals >=
    Like LIKE
    NotLike NOT LIKE
    In IN
    NotIn NOT IN
    IsNot IS NOT
    Is IS
    EqualsAll = ALL
    NotEqualsAll <> ALL
    GreaterThanAll > ALL
    GreaterThanOrEqualsAll >= ALL
    LessThanAll < ALL
    LessThanOrEqualsAll <= ALL
    EqualsAny = ANY
    NotEqualsAny <> ANY
    GreaterThanAny > ANY
    GreaterThanOrEqualsAny >= ANY
    LessThanAny < ANY
    LessThanOrEqualsAny <= ANY

    Examples

    Back to top Generated by Appeon