从三个相互关联的表中检索的 SQL 查询
我有三个表,指定以下重要列:
- Users(Id, username)
- Groups(Id, groupname, Creator)(创建者是组的创建者)
- Association(Id, UserId, GroupId)(此表中的条目包括哪个用户在哪个用户中) group)
Association.UserID =Users.Id、Association.GroupId = Groups.id 以及 Groups.creator = Users.Id。
我需要的是至少三列显示所有数据
- 组名
- 组创建者(用户)
- 与该组关联的用户(此信息位于表关联中)
I have three tables specifying important columns below
- Users(Id, username)
- Groups(Id, groupname, creator) (creator is the creator of the group)
- Association(Id, UserId, GroupId) (entries in this table include which user is in which group)
Association.UserID =Users.Id, Association.GroupId = Groups.id and also Groups.creator = Users.Id.
What I require are atleast three columns displaying all the data
- Groupname
- Group Creator (the user)
- Associated user to the group (this info is in table association)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)