我似乎無法想出製作聯接語句。在其他語句中使用SQL查詢的結果
select usrs.*
from
students s
join system_users usrs on
s.father=usrs.user_id
OR s.mother=usrs.user_id
OR s.guardian=usrs.user_id
where s.user_id = '201209083'
我有這樣的查詢,並返回:
+------------+---------+--------+--------+
| user_id | contact | status | rights |
+------------+---------+--------+--------+
| f201209083 | 4093 | active | NULL |
| g201209083 | 4095 | active | NULL |
| m201209083 | 4094 | active | NULL |
+------------+---------+--------+--------+
現在我需要的是使用的聯繫人欄的信息來獲取更多的信息和與此表參加吧:
select
*
from
address
where
contact_id = (contact column);
我需要在一個查詢中實現它的幫助。
P.S.有人能告訴我這種技術被稱爲什麼嗎?我無法通過搜索JOIN來找到相關信息。或者學習的鏈接會更好。
這正是我需要的!謝謝:) – Cartman