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

Support using clause in DELETE statement #36

Merged
merged 1 commit into from
Nov 1, 2023

Conversation

ppputtyo
Copy link
Contributor

@ppputtyo ppputtyo commented Nov 1, 2023

DELETEにおけるusingに対応しました。

input

delete from tbl_a a
using tbl_b b, tbl_c c
where a.col1 = b.col1 and b.col2 > 10 and c.col3 = 'abc';

result

delete
from
	tbl_a	a
using
	tbl_b	b
,	tbl_c	c
where
	a.col1	=	b.col1
and	b.col2	>	10
and	c.col3	=	'abc'
;

@ppputtyo ppputtyo marked this pull request as ready for review November 1, 2023 06:14
@ppputtyo ppputtyo requested a review from tanzaku November 1, 2023 06:14
@tanzaku tanzaku merged commit 3128fb8 into main Nov 1, 2023
8 checks passed
@tanzaku tanzaku deleted the dev_kawabuchi_support_using_in_delete branch November 1, 2023 09:28
@tanzaku tanzaku linked an issue Nov 1, 2023 that may be closed by this pull request
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.

Support using clause in DELETE statement
2 participants