zoukankan      html  css  js  c++  java
  • 第13周作业

    1、如何将 hellodb_innodb.sql导入到数据库中

    mysql < hellodb_innodb.sql

    2、在学生表中,查询年龄大于25岁,且为男性的同学的名字和年龄

    select name,age from students where age>25 group by gender;

    3、在学生表中,以ClassID为分组依据,查询显示每组的平均年龄

    select ClassID,agv(age) from students group by ClassID;

    4、显示第2题中平均年龄大于30的分组及平均年龄

    select avg(age) from (select name,age from students where age>25 group by gender) group by  name having avg(age)>30;

    5、显示以L开头的名字的同学的信息

    select * from students where name like "L%";

    6、显示老师ID非空的同学的相关信息

    select * from students where teacherid is not null;

    7、students表中,查询以年龄排序后的数据,并且显示年龄最大的前10位同学的信息

    select * from students where ageorder by age desc limit 10;

    8、students表中,查询年龄大于等于20岁,小于等于25岁的同学的信息

    select * from students where age between 20 and 25;

    9、以ClassID分组,显示每班的同学的人数

    select ClassID,count(*) from class group by classid;

    10、以ClassID分组,显示其平均年龄大于25的班级

    select classid from class  group by ClassID having agv(age)>25;

  • 相关阅读:
    centos7 mongodb3.4 安装
    centos7 开放端口号
    Junit4测试Spring
    selenium浏览器内核监测处理
    mitmproxy(TLS错误)
    爬虫计算两张验证图片的距离(情况一)
    git的git bash使用
    算法
    RBAC权限管理设计
    beego框架返回json数据
  • 原文地址:https://www.cnblogs.com/ldyaly/p/13587203.html
Copyright © 2011-2022 走看看