Please explain the name magickway..
我本来的想法:
select A.name<个人信息..>, B.name, C.name from A,
(select A.id, A.name from A where A.id in
(select A.father_id from A where A.id=@id)) B,
(select A.id, A.name from A, wife where wife.id=A.wife_id) C
where A.id=@id
结果:得到个人姓名,父亲姓名,母亲姓名
注:A-个人信息表,wife-妻子表,@id-已知该人员id参数
问题来了,如果多个妻子和兄弟姐妹,那就很难写了,我之前遇到这情况,现在写不出来。