一.SQL语言查询选修了全部课程的学生的学号和姓名. 两种解决途径: 第一种: 我们可以表示为在SC表中某个学生选修的课程数等于C表中课程总数.相应的SQL语言如下: select S#,SNAME from S where S# in (select S# from SC group by S# --根据Sno分组,统计每个学生选修了几门课程.如果等于C表课程的总数,就是我们要找的S# having count(*) = (select count(*) from C))--统计C表中共有几门
1.修改窗口 2.在StudentDao中增加根据姓名查找的方法 public List<Student> getStudent(String name)throws SQLException{ DbUtil dbUtil = new DbUtil(); String sql="select * from tb_student where name LIKE '"+name+"%'"; System.out.println(sql); List<S
package a927; import java.util.ArrayList; import java.util.List; class Student { private String name ; private int age ; private int score ; private String classNum ; public Student(String name, int age, int score , String classNum ) { this.age= age