标签:均值 pre 学生 from src 最小 core student png
用于测试的表:
返回数值列的总数。
执行查询:
select SUM(Score) as 总得分 from Students
效果:
返回一列中的最大值。、
执行查询:
select MAX(Score) as 最高分 from Students
效果:
返回一列中的最小值。
执行查询:
select MIN(Score) as 最低分 from Students
效果:
返回数值列的平均值。
执行查询:
select AVG(Score) as 最低分 from Students
效果:
返回匹配指定条件的行数。
执行查询:
select COUNT(Score) as 学生人数 from Students
效果:
标签:均值 pre 学生 from src 最小 core student png
原文地址:https://www.cnblogs.com/xulinjun/p/11956909.html