MySQL查询被选修的课程_sql语句查询没有被学生选修过的课程(即课程号没有在sc表中出现过)的名称....-CSDN博客

网站介绍:展开全部1、创建学生及课程表,create table test_student(stu_id number, class_id number);create table test_class(class_id number, class_name varchar2(30));2、插入测试数据,insert into test_student values(1,1001);insert into ...