如何使用 ID 作为外键来显示名称?
这就是我所拥有的:
我有一个名为 Area 的表,该表是自引用的。如果列 ParentAreaID 为空,则表示它是父区域。如果它有值,就意味着它有父母。
如何显示包含 ID、姓名和姓名(使用自引用 ID 的家长)的表格?
Here's what I have:
I have a table called Area that is self referential. If the column ParentAreaID is null it means it's a parent area. If it has a value, it means that it has a parents.
How can I show a table with ID, Name and NAME (of the parents using the self referential ID)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您想要使用连接方式: http://psoug.org/reference/connectby.html
You want to use connect by: http://psoug.org/reference/connectby.html