Hi folks,
I have three tables:
ActivityCalls, UserList, and People
UserList.Userna me and ActivityCalls.U sername are 'INNER JOINED' to determine which user is attached to an activity.
What I want to do is go one step further and look up the People.PersonNa me from people.
Here's what I have so far but it doesn't seem to work... Am I on the wrong track here?
INNER JOIN (People INNER JOIN UserList ON UserList.User_U sername=Activit yCalls.Username )
ON People.Person_I D=UserList.Pers on_ID
Any help would be greatly appreciated.
Thanks
Nick
I have three tables:
ActivityCalls, UserList, and People
UserList.Userna me and ActivityCalls.U sername are 'INNER JOINED' to determine which user is attached to an activity.
What I want to do is go one step further and look up the People.PersonNa me from people.
Here's what I have so far but it doesn't seem to work... Am I on the wrong track here?
INNER JOIN (People INNER JOIN UserList ON UserList.User_U sername=Activit yCalls.Username )
ON People.Person_I D=UserList.Pers on_ID
Any help would be greatly appreciated.
Thanks
Nick
Comment