Interface QueryUnionAllTableExpressionV3

Return the union of the specified result sets. We will remove the results that match the optional exception result sets. Note: The operation may return duplicate results since we do not perform deduplication.

interface QueryUnionAllTableExpressionV3 {
    except?: string[];
    limit?: number;
    unionAll: (string | QuerySetOperationTableExpressionV3)[];
}

Properties

except?: string[]
limit?: number

Limits the number of instances in the result set generated by this result expression.

unionAll: (string | QuerySetOperationTableExpressionV3)[]