需要一个MYSQL查询来比较两个表并且只输出不匹配的结果
我的数据库中有两个表,其中一个包含项目列表以及有关这些项目的其他信息。另一个表包含这些项目的照片列表。
items 表为每个项目提供了一个唯一的标识符,该标识符在 photos 表中用于标识哪个项目已被拍摄。
我需要输出未链接到第二个表中照片的项目列表。关于我如何做到这一点有什么想法吗?
I have two tables in my database, one contains a list of items with other information on these items. The other table is contains a list of photographs of these items.
The items table gives each item a unique identifier,which is used in the photographs table to identifier which item has been photographed.
I need to output a list of items that are not linked to a photograph in the second table. Any ideas on how I can do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
应该是你想要的
should be what you want
如果一件物品有多张照片,请使用不同的。
use distinct if one item has more than one photograph.