This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
select id, name, a.field1, b.field2, c.field3 | |
from | |
people p left join a on (a.person_id = p id) | |
left join b on (b.person_id = p.id) | |
left join c on (c.person_id = p.id); |
Комментариев нет:
Отправить комментарий