这是我的表格。我的查询是如果我给特定的课程,如何获取父电话号码。如果我上课10,那应该是萨钦和父母的电话号码
**Student table**
Student_name class id
Sachin 10 1
Dravid 10 2
Dhoni 5 3
Kohli 3 4
Manish 1 5
**Parent_table**
Parents_phone number Address id
9964289813 Hhk 1
9611704698 hhk 2
8722922982 ym 3
9591237001 Bang 4
8970893285 dvr 5
答案 0 :(得分:0)
您可JOIN
列id
列上的表格并获取所需数据,例如
select pt.Parents_phone_number,
st.Student_name
from Parent_table pt
join Student_table st on pt.id = st.id
where st.class = 10;