Sybase full outer join

Categories: Database; Tagged with: ; @ May 15th, 2014 22:56

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,.