摘要:
导入hellodb.sql生成数据库 1. 在students表中,查询年龄大于25岁,且为男性的同学的名字和年龄 select name,age from students where age>25 and Gender="M"; 2. 以ClassID为分组依据,显示每组的平均年龄 select 阅读全文
摘要:
1、显示/etc目录下所有以l开头,以一个小写字母结尾,且中间出现至少一位数字的文件或目录列表 ls -d /etc/l*[[:digit:]]*[[:lower:]] 2、显示/etc目录下以任意一位数字开头,且以非数字结尾的文件或目录列表 ls -d /etc/[0-9]*[^[:digit:] 阅读全文