ComenzarEmpieza gratis

Exclusive LEFT OUTER JOIN

An exclusive LEFT OUTER JOIN can be used to check for the presence of data in one table that is absent in another table. To create an exclusive LEFT OUTER JOIN the right query requires an IS NULL filter condition on the joining column.

Your sales manager is concerned that orders from French customers are declining. He wants you to compile a list of French customers that have not placed any orders so he can contact them.

Este ejercicio forma parte del curso

Improving Query Performance in SQL Server

Ver curso

Ejercicio interactivo práctico

Prueba este ejercicio y completa el código de muestra.

-- First attempt
SELECT c.CustomerID,
       c.CompanyName,
	   c.ContactName,
	   c.ContactTitle,
	   c.Phone 
FROM Customers c
___ ___ ___ Orders o -- Joining operator
	ON c.___ = o.___ -- Joining columns
WHERE c.Country = 'France';
Editar y ejecutar código