kwerenda sqlite z przecięciem i wyjątkiem

oto kwerenda sqlite, którą muszę wykonać, ale chcę wykonać oprócz operacji najpierw, a potem przecięcia. Domyślnie przecięcie ma wyższy priorytet niż wyjątek. Czy jest sposób, aby to osiągnąć?

select a, b from table1 intersect select a,b from table2 except  select a, b from table3

Próbowałem umieścić zapytania w nawiasach, ale rzucił mi błąd ”[ near "(": syntax error ]

select a, b from table1 intersect (select a,b from table2 except  select a, b from table3)

questionAnswers(1)

yourAnswerToTheQuestion