您的位置:首页 > 其它

随笔_14

2020-10-18 20:58 337 查看

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

mysql < hellodb_innodb.sql

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

select name,age from students where age >25 and gender='M';

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

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

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

select classid,avg(age) avage  from students group by classid having avage>3

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

select * from students where name like 'L%'

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

grant all on hellodb.* to magedu@'192.168.1.%' identified by 'centos'

测试连接

mysql  -umagedu -pcentos -h 192.168.1.154

内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: