【发布时间】:2010-10-24 12:43:07
【问题描述】:
我有两张桌子:
persons
- person_id
- fullname
students
- student_id
_ person_id
- father_id
- mother_id
在学生表中,最后三列存储人员表中的 ID。什么 SELECT 可以检索以下数据:
- student name
- father name
- mother name
为简单起见,我们假设没有 WHERE、ORDER BY 或 LIMIT
【问题讨论】: