Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

集合演算(union, intersect, except) に対応 #143

Merged
merged 1 commit into from
Mar 24, 2025

Conversation

lemonadern
Copy link
Collaborator

@lemonadern lemonadern commented Mar 21, 2025

Summary

SQLにおける代表的な集合演算 (UNION, INTERSECT, EXCEPT)に対応しました

-- union
select
	a	as	a
from
	b
union
select
	c	as	c
from
	b
;
-- intersect
select
	a	as	a
from
	b
intersect
select
	c	as	c
from
	b
;
-- except
select
	a	as	a
from
	b
except
select
	c	as	c
from
	b
;

@lemonadern lemonadern force-pushed the pgcst--union-intersect-except branch from 69807cb to 3e01a86 Compare March 24, 2025 06:06
@lemonadern lemonadern force-pushed the pgcst--union-intersect-except branch from 3e01a86 to 2b2969e Compare March 24, 2025 06:54
@lemonadern lemonadern marked this pull request as ready for review March 24, 2025 06:54
@lemonadern lemonadern requested a review from tanzaku March 24, 2025 06:58
@tanzaku tanzaku merged commit e83fb6d into replace-parser-p Mar 24, 2025
3 of 4 checks passed
@tanzaku tanzaku deleted the pgcst--union-intersect-except branch March 24, 2025 10:40
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants