3つのテーブルに参加したい
- 患者データ - (p.name)
- 雇用者データ - (e.name、e.city、e.stateAB)
- list_option_data - (l.state)
patient_data
and employer_data
have common fieldpid
employer_data
およびlist_option_data
have common フィールドstateAB
だから私は表示したいp.name, e.name, e.city, l.state
:
select
p.name,
e.name,
e.city,
l.state
from patient_data as p
inner join
/*
this part i need to know how to join these...
*/