Multiple-table criteria within DELETE #801
pawamoy
started this conversation in
Show and tell
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Opening a discussion rather than a bug since it's clearly marked as "not implemented".
I was trying to delete rows based on two criteria: the ID of a foreign key, and a string field.
...and was getting the following error:
Fine, I can just filter first then delete using IDs only:
Nice.
But in fact there's an even easier way: a foreign key is an int, so it accepts an int (the ID), therefore it does not have to be "multiple-table criteria" (no join):
🎉
Beta Was this translation helpful? Give feedback.
All reactions