Interface QueryIntersectionTableExpressionV3

Find the common elements in the returned result set. Excludes the elements from the optional except result set.

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

Properties

except?: string[]
intersection: (string | QuerySetOperationTableExpressionV3)[]
limit?: number

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