Questions tagged «self-join»

5
进行递归自联接的最简单方法?
在SQL Server中进行递归自联接的最简单方法是什么?我有一张这样的桌子: PersonID | Initials | ParentID 1 CJ NULL 2 EB 1 3 MB 1 4 SW 2 5 YT NULL 6 IS 5 而且我希望能够只获取与特定人员开始的层次结构相关的记录。因此,如果我通过PersonID = 1请求CJ的层次结构,则会得到: PersonID | Initials | ParentID 1 CJ NULL 2 EB 1 3 MB 1 4 SW 2 对于EB,我会得到: PersonID | Initials | …

13
自联接的说明
我不了解自我加入的必要。有人可以给我解释一下吗? 一个简单的例子将非常有帮助。
84 sql  self-join 
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.