I am using open office base, the latest version, and wish to amalgamate three outer joins, one left and two right
SELECT * FROM `Persons` LEFT JOIN `Address` ON `Persons`.`Address_id` = `Address`.`Address_id`
SELECT `Email`.*, `Persons`.* FROM { OJ `Email` RIGHT OUTER JOIN `Persons` ON `Email`.`Person_id` = `Persons`.`Person_id` }
SELECT * FROM { OJ `Telephone numbers` RIGHT OUTER JOIN `Persons` ON `Telephone numbers`.`Person_id` = `Persons`.`Person_id` }
I have tried for most of today to resolve this problem I cannot do it. Any ideas anyone please!!!!!