sql查考试不合格名单,但是有重考情况?
- 用access sql 查 考试成绩有不及格的学生的学号和姓名。有多门课程不及格的学生,学号和姓名只显示一次。
- sql 语言查询 查询出有两门不及格的学生信息。 查询各个班级的各门课程的平均分
- SQL 查询某门课程及格的总人数以及不及格的总人数以及没成绩的人数
- mysql,查询平均成绩不及格的学生名单。。。
用access sql 查 考试成绩有不及格的学生的学号和姓名。有多门课程不及格的学生,学号和姓名只显示一次。
select distinct 学号,姓名 from 学生 left join 选课 on 学生.学号=选课.学号
where (成绩 is not null) and 成绩<60
sql 语言查询 查询出有两门不及格的学生信息。 查询各个班级的各门课程的平均分
1、查询出有两门不及格的学生信息:
create table student(
sno int not null primary key,
sname varchar(10)
)
create table center(
cno int not null primary key,
cname varchar(10)
)
create table sgrade(
sno int ,
cno int ,
sgrade int
)
2、查询各个班级的各门课程的平均分:
select sno, avg(sgrade) avgs
from sgrade
group by sno
扩展资料:
用Where子句配合score<60的条件,筛选出所有不及格的人和其不及格的课程。
where是数据库中的一个指令,一般用于规定选择的标准。SELECT列名称FROM表名称WHERE列运算符值。
对于学生的不及格信息可以使用COUNT函数,用于Excel中对给定数据集合或者单元格区域中数据的个数进行计数,其语法结构为COUNT(value1,value2, ...)。COUNT函数只能对数字数据进行统计。
参考资料来源:百度百科-COUNT函数
参考资料来源:百度百科-where (数据库中的一个指令)
SQL 查询某门课程及格的总人数以及不及格的总人数以及没成绩的人数
1、创建测试表,
create table test_score(class_id varchar2(20), student_id varchar2(20), score number);
2、插入测试数据
insert into test_score values ('C07', 1001, 50);
insert into test_score values ('C07', 1002, 72);
insert into test_score values ('C07', 1003, 85);
insert into test_score values ('C07', 1004, 91);
insert into test_score values ('C07', 1005, 48);
insert into test_score values ('C07', 1006, 79);
insert into test_score values ('C07', 1007, null);
3、查询表的记录,select t.*, rowid from test_score t;
4、编写sql,查询某某课程及格的总人数以及不及格的总人数以及没成绩的人数,
select class_id,
count(distinct case when score < 60 then student_id end) s1,
count(distinct case when score >= 60 then student_id end) s2,
count(distinct case when score is null then student_id end) s3
from test_score t group by class_id,
mysql,查询平均成绩不及格的学生名单。。。
select avg(sx+yy+hx)/3<60 from tb_chengjibiao
修改为
select (sx+yy+hx)/3<60 from tb_chengjibiao