I want to display data from my agents table againts data from a client table , but each day new clients are added, and only those clients from that day must be displayed to the agents.
Hi Guys
I figured it out I created a another table called agent_client which contains the ids for both the agents and clients and linked the 2 tables to the agent_client table
Last edited by white10 : 07-05-2007 at 04:57 AM.
Reason: grammar
Hi Guys
I figured it out I created a another table called agent_client which contains the ids for both the agents and clients and linked the 2 tables to the agent_client table
you could have also done a join against the two original tables you had then used the WHERE to filter on date.