Advice on how to complete specific MySQL JOIN
- by Tim
Hello,
I have a mysql table jobs.
This is the basic structure of jobs.
id
booked_user_id
assigned_user_id
I then also have another table, meta.
Meta has the structure:
id
user_id
first_name
last_name
How can I join these tables so that both booked_user_id and assigned_user_id can access meta.first_name?
Thanks for your advice
Tim