Let's say I have a table Projects in which in a particular tuple I have many Users. For Example:
Projects
id project_name developer manager tester
1 w ww z t
2 qq y ll mm
...
Now, developer, manager and tester are user from the Users table. The project table contains the username of the user. Say the Users table is like
Users
id username first_name last_name email_add
1 ww John Smith [email protected]
...
and I want to display the information about the project but I need the full name (first_name+" "+last_name) of all the users and not the username which is stored in the Projects table.
What would be an efficient way to approach this?