数据库练习-Magedu 11周

1、 导入hellodb.sql生成数据库

mysql -uroot -p123456 <hellodb_MyISAM.sql

(1) 在students表中,查询年龄大于25岁,且为男性的同学的名字和年龄

select * from students where age>25 and gender="M";

在这里插入图片描述

(2) 以ClassID为分组依据,显示每组的平均年龄

select avg(age),classid from students group by classid;

在这里插入图片描述

(3) 显示第2题中平均年龄大于30的分组及平均年龄

select avg(age),classid from students group by classid having avg(age)>30;

在这里插入图片描述

(4) 显示以L开头的名字的同学的信息

select * from students where name like “L%”;
在这里插入图片描述

2、数据库授权magedu用户,允许192.168.1.0/24网段可以连接mysql

create user magedu@"192.168.1.%" identified by "123456";
grant all privileges on hellodb.* to magedu@"192.168.1.%";

在这里插入图片描述

猜你喜欢

转载自blog.csdn.net/qq_29974229/article/details/120306041