Sybase doesn’t have this feature, however we can use lift/right join + union to get it:
SELECT * FROM A LEFT OUTER JOIN B ON…
UNION
SELECT * FROM A RIGHT OUTER JOIN B ON…
UNIN will remove the duplicated records.
// Proudly powered by Apache, PHP, MySQL, WordPress, Bootstrap, etc,.