should be it

This commit is contained in:
2025-10-24 19:21:19 -05:00
parent a4b23fc57c
commit f09560c7b1
14047 changed files with 3161551 additions and 1 deletions

View File

@@ -0,0 +1,27 @@
# name: test/sql/setops/test_except.test
# description: Test EXCEPT / INTERSECT
# group: [setops]
statement ok
CREATE TABLE a(i INTEGER)
statement ok
INSERT INTO a VALUES (41), (42), (43)
statement ok
CREATE TABLE b(i INTEGER)
statement ok
INSERT INTO b VALUES (40), (43), (43)
query I
select * from a except select * from b order by 1
----
41
42
query I
select * from a intersect select * from b
----
43