Mysql查询小作业

数据准备
drop table if exists class;
create table class(
    class_no int(2) unsigned zerofill primary key auto_increment comment ‘班级编号‘,
    class_name varchar(30) not null comment ‘班级名称‘
);
insert into class values(1, ‘培优班‘);
insert into class values(2, ‘普通班‘);

drop table if exists student;
create table student(
    stu_no int(2) unsigned zerofill primary key auto_increment comment ‘学员编号‘,
    stu_name varchar(30) not null comment ‘学员姓名‘,
    stu_sex varchar(3) not null comment ‘学员性别‘,
    stu_age tinyint(2) unsigned zerofill comment ‘学员年代‘,
    class_no int(2) unsigned zerofill comment ‘所在班级编号‘,
    foreign key(class_no) references class(class_no)  
);
insert into student values(01, ‘李白‘, ‘男‘, 18, 01);
insert into student values(02, ‘杜甫‘, ‘男‘, 20, 01);
insert into student values(03, ‘张飞‘, ‘男‘, 32, 02);
insert into student values(04, ‘韩信‘, ‘男‘, 26, 02);
insert into student values(05, ‘了龙‘, ‘男‘, 27, 02);
insert into student values(06, ‘大乔‘, ‘女‘, 17, 01);
insert into student values(07, ‘小乔‘, ‘女‘, 16, 01);
insert into student values(08, ‘小乔‘, ‘女‘, 16, 01);
insert into student values(09, ‘关哥‘, ‘男‘, 32, 02);
insert into student values(10, ‘刘备‘, ‘男‘, 36, null);
alter table student drop foreign key `student_ibfk_1`;

1: 查询出student表中年龄最大的学生
    select * from student where stu_age = (select max(stu_age) from student);

2: 查询出student表中年龄最小的学生
    select * from student where stu_age = (select min(stu_age) from student);

3: 查询出02号班中最大的年龄是多少
    select max(stu_age) from student where class_no = 2;

4: 查询出01号班中最小的年龄是多少
    select min(stu_age) from student  where class_no = 1;

5: 查询出01号班中有多少个学生
    select count(*) from student where class_no = 1;

6: 查询出01号班中平均年龄是多少
    select avg(stu_age) from student where class_no = 1;

7:查询出没有班级的学生
    (失败)select * from student where class_no not in ( select class_no from class);(查询出结果为空?)
    (成功)select * from student where not exists ( select class_no from class where student.class_no = class.class_no); // null值的特殊性,不能使用not in来查询,NULL值在与任意值比较时总是假的(FALSE),并且包含NULL的一个表达式总是产生一个NULL值

8: 查询出02号班级中年龄大于30岁的男学员
    select * from student where class_no = 2 and stu_sex = ‘男‘ and stu_age > 30;

9: 查询出所有的女学员姓名,并在名字后加上‘大美女’名字
    select concat(stu_name,‘大美女‘) from student where stu_sex = ‘女‘;

10: 查询出1号班级的所有男学员 还有 没有班级的学员
     select * from student where (class_no = 1 || class_no is null) and stu_sex = ‘男‘;
     select * from student where class_no = 1 and stu_sex = ‘男‘ || not exists ( select class_no from class where student.class_no = class.class_no);

11: 查询出年龄在20-30岁的学员
    select * from student where stu_age between 20 and 30;

12: 查询出所有名字中第二个字符是‘乔’的学员的平均工资(没有工资列,改为平均年龄或者添加工资列)
    select avg(stu_age) from student where stu_name like(‘_乔%‘);

13: 查询出班中所有学生的姓名,其中不包括重复的
    select distinct(stu_name) from student where class_no is not null;

14: 查询姓名,性别两个字段, 不包括重复的记录
    select distinct stu_name,stu_age from student;
15: 查询出1号部门中所有的学员,根据年龄升序排序,年龄相同的则按照学号降序排序
    select * from student where class_no = 1 order by stu_age asc,stu_no desc;

16: 查询出最后一条数据
    (失败)select * from student limit (select count(stu_no)-1 from student),1;// 参数不能为表达式
    select * from student order by stu_no desc limit 1;

17: 查询出学号为6的后面的3条数据
    select * from student where stu_no > 6 limit 3;

18: 查询出学号为6的前面的3条数据
    select * from student where stu_no < 6 order by stu_no desc limit 3;

19: 删除最后一条记录,(在不知道最后一条记录id的情况)
    delete from student where stu_no in (select stu_no from  (select stu_no from student order by stu_no desc limit 1) as temtable);// MySQL不能指定更新的目标表在FROM子句,所以先将删除的数据放到临时表中再进行删除
    
20: 删除掉学号为6的后面的3条数据(同理(19))
    delete from student where stu_no in (select stu_no from (select stu_no from student where stu_no > 6 limit 3) as temtable);

时间: 2024-10-08 00:25:04

Mysql查询小作业的相关文章

mysql 查询小demo

两张表的的结构如下,需求是写出从one表到two表和从two表到one表的查询转换. create table student_one( name varchar(50) default '' not null, type varchar(10) not null default 0, score float(5,2) not null default 0.00 )Engine=innodb; create table student_two( name varchar(50) default

Mysql查询缓存碎片、缓存命中率及Nagios监控

Mysql 的优化方案,在互联网上可以查找到非常多资料,今天对Mysql缓存碎片和命中率作了详细了解,个人作了简单整理. 一.Mysql查询缓存碎片和缓存命中率. mysql> SHOW STATUS LIKE 'qcache%'; +-------------------------+-----------+ | Variable_name | Value | +-------------------------+-----------+ | Qcache_free_blocks | 5 |

mysql查询缓存打开、设置、参数查询、性能变量意思

http://blog.sina.com.cn/s/blog_75ad10100101by7j.html http://www.cnblogs.com/zemliu/archive/2013/08/03/3234372.html 第一: query_cache_type 使用查询缓存的方式 一般,我们会把 query_cache_type 设置为 ON,默认情况下应该是ON mysql> select @@query_cache_type;+--------------------+| @@qu

MYSQL查询性能优化

查询的基础知识 MySQL查询过程如下图所示: MySQL是通过查询语句的哈希查找来命中缓存的,需要注意的是如果查询语句大小写不一致或者有多余的空格,是不会命中缓存的. 一个查询通常有很多执行方式,查询优化器通过计算开销(随机读取次数)来选择最优的查询. MySQL把所以的查询都当做联接来处理,联接是按照循环嵌套的策略来执行的,如下图所示: 查询的优化和限制 我们需要知道查询优化器会做哪些优化,这样在写查询的时候就可以不需要考虑手动来做这些优化,把这些事情交给查询优化器去做是更好的选择,查询优化

MySQL查询数据表中数据记录(包括多表查询)

MySQL查询数据表中数据记录(包括多表查询) MySQL查询数据表中数据记录(包括多表查询) 转自:http://www.baike369.com/content/?id=5355 在MySQL中创建数据库的目的是为了使用其中的数据. 使用select查询语句可以从数据库中把数据查询出来. select语句的语法格式如下: select selection_list // 要查询的内容,选择哪些列 from table_list // 从什么表中查询,从何处选择行 where primary_

MySQL查询缓存打开、设置、参数查询、性能变量

query_cache_type 使用查询缓存的方式 一般,我们会把query_cache_type 设置为 ON,默认情况下应该是ON mysql> SELECT @@query_cache_type; +--------------------+ | @@query_cache_type | +--------------------+ | ON | +--------------------+ query_cache_type有3个值 0代表关闭查询缓存OFF,1代表开启ON,2(DEMA

关于 mysql 查询缓存

查询缓存的作用就是当查询接收到一个和之前同样的查询,服务器将会从查询缓存种检索结果,而不是再次分析和执行上次的查询.这样就大大提高了性能,节省时间. 查看缓存是否开启: select @@query_cache_type; 禁用查询缓存:set session query_cache_type=off; 这里的设置只是对目前的设置,是暂时的 若 执行 set session query_cache_type=off; 时报错 提示 restart with query_cache_type=1

mysql查询今天,昨天,近7天,近30天,本月,上一月数据的方法(摘录)

mysql查询今天,昨天,近7天,近30天,本月,上一月数据的方法分析总结: 话说有一文章表article,存储文章的添加文章的时间是add_time字段,该字段为int(5)类型的,现需要查询今天添加的文章总数并且按照时间从大到小排序,则查询语句如下: select * from `article` where date_format(from_UNIXTIME(`add_time`),'%Y-%m-%d') = date_format(now(),'%Y-%m-%d'); 或者: selec

mysql查询今天、昨天、近7天、近30天、本月、上一月的SQL语句

mysql查询今天.昨天.近7天.近30天.本月.上一月的SQL语句 这篇文章主要介绍了mysql查询今天.昨天.近7天.近30天.本月.上一月的SQL语句,一般在一些统计报表中比较常用这个时间段,需要的朋友可以参考下 mysql查询今天,昨天,近7天,近30天,本月,上一月数据的方法分析总结: 话说有一文章表article,存储文章的添加文章的时间是add_time字段,该字段为int(5)类型的,现需要查询今天添加的文章总数并且按照时间从大到小排序,则查询语句如下: 代码如下: select