SQL:需要帮助创建一对多集合比较查询
参数如下:
- 我有一个名为 Tasks 的表,其中包含 ID 列(主键)和标签(文本)。
- 我有另一个名为“位置”的表,其中包含引用任务 ID 的外键和位置名称(文本)。
- 在我的代码中,我有一组位置。
- 更新:我需要一个查询来返回在我的集合中找到关联位置的所有任务。每个具有在我的集合中找不到的关联位置的任务都必须被丢弃。
解决这个问题的最佳方法是什么?
The parameters are thus:
- I have a table called Tasks with columns ID (primary key) and label (text).
- I have another table called Locations with a foreign key referencing Tasks' ID and a name for a location (text).
- In my code I have a set of locations.
- UPDATED: I need a query to return all tasks that have associated locations found within my set. Each task that has an associated location not found in my set must be thrown out.
What's the best way to go about this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对于修改后的要求:
For the modified requirement: