You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-08-17 09:41:06 +03:00
5 lines
320 B
Plaintext
5 lines
320 B
Plaintext
-- Invalid/not supported Equality Variant cases that use <> (possible Cartesian product cases):
|
|
Select r_name from region where r_name <> ( select max(n_name) from nation where r_regionkey <> n_regionkey );
|
|
Select r_name from region where r_name <> ( select max(n_name) from nation where r_regionkey > n_regionkey );
|
|
|