MINUS was introduced as a synonym for EXCEPT from MariaDB 10.6.1 when SQL_MODE=ORACLE is set.
CREATE TABLE seqs (i INT); INSERT INTO seqs VALUES (1),(2),(2),(3),(3),(4),(5),(6); SET SQL_MODE='ORACLE'; SELECT i FROM seqs WHERE i <= 3 MINUS SELECT i FROM seqs WHERE i>=3; +------+ | i | +------+ | 1 | | 2 | +------+
© 2023 MariaDB
Licensed under the Creative Commons Attribution 3.0 Unported License and the GNU Free Documentation License.
https://mariadb.com/kb/en/minus/