I would like to show all the usernames who have interacted with a bug in MS Access. I do not understand how to reference the same Users.UserName field 3 times in my select statement?
Here are my tables
--------------------------------------------
Table 'Bugs'
--------------------------------------------
BugID OpendBy ClosedBy LastChangedBy
1 1 3 2
2 3 4 4
3 2 4 4
4 3 1 3
--------------------------------------------
Table 'Users'
--------------------------------------------
ID UserName
1 Joe
2 Chris
3 Steve
4 Sarah
I would like the query to return
BugID OpendBy ClosedBy LastChangedBy
1 Joe Steve Chris
2 Steve Sarah Sarah
3 Chris Sarah Sarah
4 Steve Joe Steve