I'm trying to get the sum of customers' balances from a specific sales rep. Here's my code:
SELECT SUM(CusBalance)
From Customer, Rep
WHERE
Rep.RepFName = 'Tim'
AND
Rep.RepLName = 'Sanchez';
However, I'm just getting the sum of every customer's balances.
I must be making a simple mistake, but I'm brand new to SQL and a little stuck. Any help would be appreciated. BTW, I'm doing this in Access 2013.