Given the following relations, write an SQLite query with JOIN keyword to retrieve the full name of employees with custo
Posted: Fri May 20, 2022 10:30 am
Given the following relations, write an SQLite query with JOIN keyword to retrieve the full name of employees with customers and the total number of customers they have, as shown in Figure 1. FullName is based on the concatenation of fName and IName, separated by a blank space. TotalCustomer is the total number of customers for a particular employee. Employee(employeeld, fName, IName) Customer(customerNo, fName, IName, email, employeeld) FullName TotalCustomer Figure 1: Sample output Enter your answer here