Advice on how to complete specific MySQL JOIN
Posted
by Tim
on Stack Overflow
See other posts from Stack Overflow
or by Tim
Published on 2010-06-11T02:09:21Z
Indexed on
2010/06/11
2:12 UTC
Read the original article
Hit count: 409
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
© Stack Overflow or respective owner