BETA
Session Ready
Exercise

Inner joins

Let's start combining data from multiple tables! The sales support department received a call from a customer asking to speak to the employee that helped her with her purchase. You decide to get them the necessary information. You know that the customer's name is Mark Philips.

To get the name of the employee, you will need to use data from both the Customer and the Employee tables. Let's make sure this customer gets in touch with the right employee.

Instructions 1/2
undefined XP
  • 1
  • 2
  • Select the first and last names from the Customer and the Employee tables.
  • Inner join the Customer table to the Employee table.
  • You should match the tables on the SupportRepId field in Customer and the EmployeeId field in Employee.