EchoAlertcom
IS-IT--Management
Hello,
I am using ASP and an Access 2000 Database. I need to Join 3 tables. I understand how to do it but it isn't working. I have pasted the code below, any suggestions would be appreciated:
Thank you very much
Steve
I am using ASP and an Access 2000 Database. I need to Join 3 tables. I understand how to do it but it isn't working. I have pasted the code below, any suggestions would be appreciated:
Code:
SELECT U.NName, C.CommitteeName
FROM Users U
INNER JOIN Committee_Members CM ON U.UID = CM.UID
INNER JOIN Committees C ON CM.CID = C.CID
WHERE U.UID = varintUID
Thank you very much
Steve