有一个面试测试,下面是表格和结构
Table Person = id, name, dob, dod, mother_id, father_id
Primary Key (id)
Foreign Key mother_id references Person
Foreign Key father_id references Person
有人问
- “选择所有的母亲”
- “选择那些是 'John Smith' 和 'Jane' 的孩子的孩子
我很困惑,因为我假设外键会像往常一样与其他表链接。但那时我失败了。有人知道实际的答案和原因吗?