Home  >  Article  >  Database  >  mysql学习mysql查询语句综合练习

mysql学习mysql查询语句综合练习

WBOY
WBOYOriginal
2016-06-01 13:06:471214browse

练习一:

设有成绩表stu如下:

姓名 科目 成绩
张三 数学 90
张三 语文 50
张三 地理 40
李四 语文 55
李四 政治 45
王五 政治 30
王五 数学 70

试查询两门及两门以上不及格同学的平均分

解答如下

1.创建数据表

create table stu(

id int primary key auto_increment,

name char(3) not null default'',

subject char(3) not null default'',

score decimal(3,1) not null default 0.0

)charset utf8;

2.写入数据

set names gbk;#这样中文汉字才可以正常输入

insert into stu

(name,subject,score)

values

('张三','数学',90),

('张三','语文',50),

('张三','地理',40),

('李四','语文',55),

('李四','政治',45),

('王五','政治',30),

('王五','数学',70);

3.查询

#本题的解答——查询存在两门(包含两门)以上课程不及格的学生的平均分 select name,avg(score),sum(score=2;

#其它相关查询1——查询存在两门(包含两门)以上课程不及格的学生的姓名

select name from stu where score=2;

#其它相关查询2——对本题的一点解释

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn