It does not seem to be possible to be explicit about the precedence when applying more than one combination. In the example below, without the additional parentheses the `INTERSECT` will take precedence over the `UNION`. ```tsql (SELECT 1 UNION SELECT 2) INTERSECT SELECT 2 ``` Is there a way to workaround this issue and add parentheses as needed to enforce the desired precedence?