Let us know how you get on
Let us know how you get on
If this helped, please click the star at the bottom left of this posting and add to my reputation. Many thanks.
Bob Fitzpatrick
Hi again!
This syntax:
SELECT Computer.ID, Computer.Type, Computer.Room, User.Name FROM [User] INNER JOIN Computer ON User.ID=Computer.User;
How do I add another column, i e the room?
Jonas
Try this SQL:Don't forget to change the "Room" control from a combo box to a Text Box.Code:SELECT Computer.ID, Computer.Type, Room.Room, User.Name FROM Room INNER JOIN ([User] INNER JOIN Computer ON User.ID=Computer.User) ON Room.ID=Computer.Room;
If this helped, please click the star at the bottom left of this posting and add to my reputation. Many thanks.
Bob Fitzpatrick