时间:2021-07-01 10:21:17 帮助过:4人阅读
效果:
返回一列中的最大值。、
执行查询:
select MAX(Score) as 最高分 from Students
效果:
返回一列中的最小值。
执行查询:
select MIN(Score) as 最低分 from Students
效果:
返回数值列的平均值。
执行查询:
select AVG(Score) as 最低分 from Students
效果:
返回匹配指定条件的行数。
执行查询:
select COUNT(Score) as 学生人数 from Students
效果:
sql常用内置函数
标签:均值 pre 学生 from src 最小 core student png