如果两个字段中的任何一个位于一组值中,您将如何编写此 SQL 来删除
背景:
我有2个表:
组件:(id,名称)
依赖项:(id,hasaComponentId,isaComponentId)
在这种情况下 >hasaComponentId 和 isaComponentId 都是由组件连接的组件表中的外键。id
问题
我有一组用户选择的 Id。我想要一个 sql 查询,该查询将从依赖项表中删除记录,其中 id 列表中的任何 id 都位于 hasaComponentId 字段或 isaComponentId 字段中。
此操作的最佳 sql 是什么?
Background:
i have 2 tables:
Components: (id, name)
Dependencies: (id, hasaComponentId, isaComponentId)
in this case the hasaComponentId and isaComponentId are both foreign keys into the components table joined by components.id
Question
i have a set of Ids that the user selects. I want a sql query that will delete records from the dependencies tables where any of the ids in my list of ids is either in the hasaComponentId field or the isaComponentId field.
what is the best sql for this action?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
或者
OR
未经测试,但看起来不错。确保您首先执行
SELECT
!Not tested, but looks right. Make sure you perform a
SELECT
first!