mysql|多表链接查询

use test; select * from students; select * from courses; select * from sc; # 多表链接查询 -- 查询选修了【数据库原理】的计算机系的学生学号和姓名。 select distinct students.Sno, Sname from students, courses, sc where Cname='数据库原理' and
相关文章
相关标签/搜索