
Ultimate access to all questions.
Given two SQL statements that produce result sets, how will the result sets differ when each statement is executed in Databricks SQL?

A
The first statement will return all data from the customers table and matching data from the orders table. The second statement will return all data from the orders table and matching data from the customers table. Any missing data will be filled in with NULL.
B
When the first statement is run, only rows from the customers table that have at least one match with the orders table on customer_id will be returned. When the second statement is run, only those rows in the customers table that do not have at least one match with the orders table on customer_id will be returned.
C
There is no difference between the result sets for both statements.
D
Both statements will fail because Databricks SQL does not support those join types.
E
When the first statement is run, all rows from the customers table will be returned and only the customer_id from the orders table will be returned. When the second statement is run, only those rows in the customers table that do not have at least one match with the orders table on customer_id will be returned.