Hi all.
Can you advise on the following, I have 2 tables:
TABLE 1. NAME chandos_agents
agent_id
agent_name
agent_location_id
and so on
TABLE 2. NAME chandos_agents_location
agent_location_id
agent_location
I need to write aquery that will show the results as follows:
agent_id
agent_name
agent_location
I have been playing around with my query all day with no result.
I think it should be something like this:
SELECT agents., agent_location.
FROM agents, agent_location
WHERE agent_id = agent_location_id
Or am I going down the wronge road.
Any help would be good.
Kind regards, keep safe and well.
Dereck