I've not too terribly skilled at SQL, and I'm having problems with this join.
The current query is as follows:
SELECT
EM.*, Activity.*, CL.*, Contacts.*, Opportunity.*
FROM
EM, Activity, CL, Contacts, Opportunity
WHERE
EM.Employee = Activity.Employee AND CL.ClientID = Activity.ClientID AND...