学生表:
食堂表
两张表关联查询出学生与食堂的相关的数据,使用find_in_set函数
select st.id,st.name,d.name from student st left join dining d on 1=1
where find_in_set(st.id,d.student_Id)
学生表:
食堂表
两张表关联查询出学生与食堂的相关的数据,使用find_in_set函数
select st.id,st.name,d.name from student st left join dining d on 1=1
where find_in_set(st.id,d.student_Id)