Show / Hide Table of Contents

    ISqlQueryBuilder.Union Method

    .NET Standard 2.x

    Uses UNION to combine the result set of the current SQL SELECT statement with the result set of another SQL SELECT statement.

    Namespace: SnapObjects.Data

    Assembly: SnapObjects.Data.dll

    Overloads

    Method Description
    Union(ISqlQueryBuilder queryBuilder) Uses UNION to combine the result set of the current SQL SELECT statement with the result set of another SQL SELECT statement generated by the ISqlQueryBuilder object.
    Union(ISqlQueryBuilder queryBuilder, string builderAlias) Uses UNION to combine the result set of the current SQL SELECT statement with the result set of another SQL SELECT statement generated by the ISqlQueryBuilder object; and specifies an alias for the ISqlQueryBuilder object.
    Union(string sqlRaw) Uses UNION to combine the result set of the current SQL SELECT statement with the result set of another raw SQL SELECT statement.
    Union(string sqlRaw, string builderAlias) Uses UNION to combine the result set of the current SQL SELECT statement with the result set of another raw SQL SELECT statement; and specifies an alias for the raw SQL SELECT statement.
    Back to top Generated by Appeon