I have a table with two foreign keys in one table.
Table PROJECTS
- Id
- Owner - FK
- Client - FK
and
table USERS
- Id
- Name
I'd like to select all projects with appropriate names of the owner and client
The result should look like:
Id | OwnerName | ClientName