Difference between full join and cross join-oracle sql plsql interview question and answer for fresher and experienced
Difference between full join and cross join in sql:- CROSS JOIN FULL JOIN It combines each and every row from one table with another table. Specific condition or relationship is not required to match all the rows of two tables. It will generate possibility all the combination of rows. The number of rows present in the first table are multiplied with the number of rows present in the second table. It combines rows from the two tables when there is matched on the basis of specified condition and includes unmatched rows from the both tables with NULL values. It is known as cartesian product or cartesian join. It is known as full outer join. ON clause is not present. ON clause is present. On condition is not satisfied for those rows, it will placed NULL values for unpopulated fields. It will produce all the combinations of the rows. It is the co...