标签:ase 重复数 字段 回文 add 分组 com case 分享
数据库表 students
1、平均值avg
??语法:select avg(列名)from 表名
??例:select avg(age)as age_avg from students
????as的意思是将输出的列名重定义,以as后面的文字输出
??结果:
2、返回指定条件的行数
??返回指定列的值的数量(null不做计算)
??如果不加列名,以*代替则返回表中的数量
??语法:select count(列名)from 表名
??
??返回指定列剔除重复数据的数量
??语法:select count(distinct 列名)from 表名
??例:select count(*)as students_number from students
??结果:
3、返回第一条、最后一条、最大值、最小值、相加的和所在的数据
??第一条:first()
??最后一天:last()
??最大值:max()
??最小值:min()
??相加的和:sum()
?语法:select first/last/max/min/sum(age)as age_avg from students
?执行参照1、2条例子
4、分组
??语法:select 列名 from 表名 where 列名=值 group by 列名
????where作为判断语句可有可无
??例:select sum(age),address from students group by address
??结果:?
5、返回文本字段中值的长度
??语法:select len(列名)from 表明
6、返回当前的日期和时间
??语法:select now() from 表名
7、对函数显示的字段进行格式化
??语法:select format(列名,指定显示格式)from 表名
8、将函数字段的值转化为大写
??语法:select ucase(列名)from 表名