Linux学习-第17周

2021/4/12 7:27:51

本文主要是介绍Linux学习-第17周,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

1、导入hello.sql生成数据库
(1) 在students表中,查询年龄大于25岁,且为男性的同学的名字和年龄
select name,age from stu where age>25 and gender='m';
(2) 以ClassID为分组依据,显示每组的平均年龄
select classid,avg(age) from stu where classid is not null group by classid;
(3) 显示第2题中平均年龄大于30的分组及平均年龄
select classid,avg(age) from stu where classid is not null group by classid having avg(age)>30;
(4) 显示以L开头的名字的同学的信息
select * from stu where name rlike 'l%';

select * from stu where name like 'L%';

2、数据库授权magedu用户,允许192.168.1.0/24网段可以连接mysql
grant all on mysql.* to magedu@'192.168.1.0/24';



这篇关于Linux学习-第17周的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程