Prepare this SQL statement to find the product id and category name
Question: Write a SELECT statement that returns these two columns:
CategoryName The CategoryName column from the Categories table
ProductID The ProductID column from the Products table
Return one row for each category that has never been used.
Note: Use an outer join to get the result and only return rows where the ProductID column contains a null value.