首页 > TAG信息列表 > hellodb

3. 导入hellodb.sql生成数据库,完成下列操作

3. 导入hellodb.sql生成数据库(1) 在students表中,查询年龄大于25岁,且为男性的同学的名字和年龄 (2) 以ClassID为分组依据,显示每组的平均年龄(3) 显示第2题中平均年龄大于30的分组及平均年龄(4) 显示以L开头的名字的同学的信息 导入hellodb.sql生成数据库[root@CentOS8 ~]# mysql -

第十一周

第十一周1、 导入hellodb.sql生成数据库(1) 在students表中,查询年龄大于25岁,且为男性的同学的名字和年龄 MariaDB [hellodb]> select Name,Gender,Age from students where Age>25 and Gender='M';+--------------+--------+-----+| Name | Gender | Age |+--------------