diff options
Diffstat (limited to 'src/Statements/SelectStatement.php')
-rw-r--r-- | src/Statements/SelectStatement.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Statements/SelectStatement.php b/src/Statements/SelectStatement.php index deee68a..3dd0416 100644 --- a/src/Statements/SelectStatement.php +++ b/src/Statements/SelectStatement.php @@ -112,6 +112,8 @@ class SelectStatement extends Statement 'LIMIT' => array('LIMIT', 3), 'PROCEDURE' => array('PROCEDURE', 3), 'UNION' => array('UNION', 1), + 'EXCEPT' => array('EXCEPT', 1), + 'INTERSECT' => array('INTERSECT', 1), '_END_OPTIONS' => array('_END_OPTIONS', 1), // These are available only when `UNION` is present. // 'ORDER BY' => array('ORDER BY', 3), |