PostgreSQL – FULL OUTER JOIN
A FULL OUTER JOIN is used to retrieve data from two or more tables based on a specified condition, including all rows from both the left (or first) table and the right (or second) table. If there’s no match for a row in one table, the columns from the other table will be filled with…