Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
SELECT DISTINCT
contactInfo.customerID, MAX(DISTINCT contactInfo.contactDate) AS LastContact, customers.firstName, customers.lastName, customers.companyName,
salesPeople.salesPerson
FROM contactInfo INNER JOIN
customers ON contactInfo.customerID = customers.customerID INNER JOIN
salesPeople ON contactInfo.createdBy = salesPeople.salesPersonID
GROUP BY contactInfo.customerID, customers.firstName, customers.lastName, customers.companyName, salesPeople.salesPerson
ORDER BY contactInfo.customerID