Scorez2000
Programmer
I'll start by describing the system. I have two tables. The first one is a directory of users which has firstname, last name, phone number and password.
The second table has callid, number called, duration, cost and assignment.
Assignment is a field which will consisit of one of three values: Personal, Business or Null. If it is set at null, it means the person has not marked that call as either personal or business.
The tables obviously have a 1-to-many relationship. In that, a person can make many calls, but each call can only be made by one person.
I need to run a query that retrieves all users that still have outstanding calls that have not been marked as business or personal. Does anyone know how to do this?
Thanks in advance.
Wayne.
The second table has callid, number called, duration, cost and assignment.
Assignment is a field which will consisit of one of three values: Personal, Business or Null. If it is set at null, it means the person has not marked that call as either personal or business.
The tables obviously have a 1-to-many relationship. In that, a person can make many calls, but each call can only be made by one person.
I need to run a query that retrieves all users that still have outstanding calls that have not been marked as business or personal. Does anyone know how to do this?
Thanks in advance.
Wayne.