Skip to content

Mysql multi-table deletes is not supported #854

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

Closed
AviRaboah opened this issue Apr 18, 2023 · 4 comments · Fixed by #855
Closed

Mysql multi-table deletes is not supported #854

AviRaboah opened this issue Apr 18, 2023 · 4 comments · Fixed by #855

Comments

@AviRaboah
Copy link
Contributor

The following query is not supported -

DELETE t1, t2 FROM t1 INNER JOIN t2 INNER JOIN t3
WHERE t1.id=t2.id AND t2.id=t3.id;

got - ParserError("Expected FROM, found: t1")

is this query are going to be supported near future ?

thanks.

@ankrgyl
Copy link
Contributor

ankrgyl commented Apr 18, 2023

Hi @AviRaboah as far as I know, there are no active plans to implement this feature. However, we welcome contributions and would gladly collaborate with you if you'd like to take a stab at implementing it.

@AviRaboah
Copy link
Contributor Author

AviRaboah commented Apr 18, 2023 via email

@ankrgyl
Copy link
Contributor

ankrgyl commented Apr 18, 2023

Hi @AviRaboah, yes that's intended — the workflow to use is a pull request which allows the maintainers of this repo to review your code before it's merged in.

You usually do this by forking the repo, pushing a branch, and then submitting a pull request. Let us know if you have any questions.

@AviRaboah
Copy link
Contributor Author

AviRaboah commented Apr 18, 2023 via email

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 a pull request may close this issue.

2 participants