Considering these 2 tables:
Table orders:
order_id owner_id client_id
---------------------------
123 2 1
124 1 2
Table users
user_id name
------------
1 Bill
2 John
I’m trying to get the following result:
order_id owner_name client_name
-------------------------------
123 John Bill
124 Bill John
What is the “best” query?
Thanks!
1 Answer