SQL Server2000聚合函数和空值
当前位置:点晴教程→知识管理交流
→『 技术文档交流 』
SQL Server2000的聚合函数大都会忽略空值,所以在含有空值的列上使用聚合函数时需格外谨慎。例如有一个Student表如下:
我们用下边SQL语句统计下人数、平均年龄、最大年龄、最小年龄: 程序代码 select count(*) as count1, count(age) as count2, avg(age) as [avg], max(age) as [max], min(age) as [min] from Student 引用内容 count1 count2 avg max min ----------- ----------- ----------- ----------- ----------- 3 2 21 22 20 可以看到,除了count(*),其他聚合函数都忽略了stu3。可以使用isnull函数给空值设置一个默认值,让聚合函数不忽略该行: 程序代码 select count(*) as count1, count(isnull(age,0)) as count2, avg(age) as [avg], max(age) as [max], min(age) as [min] from Student 引用内容 count1 count2 avg max min ----------- ----------- ----------- ----------- ----------- 3 3 21 22 20 注意:对avg、max、min聚合函数不应使用isnull,否则会出现用两个人的年龄计算三个人的平均年龄,这显然是不合理的。 很多时候,我们都会给字段设置一个默认值,当字段值为空值时就使用默认值,再看Student表: 我们用下边SQL语句统计下人数、平均年龄、最大年龄、最小年龄: 程序代码 select count(*) as count1, count(age) as count2, avg(age) as [avg], max(age) as [max], min(age) as [min] from Student 引用内容 count1 count2 avg max min ----------- ----------- ----------- ----------- ----------- 3 3 14 22 0 很显然,avg、min的值不是我们想要的,avg和min都应忽略stu3,这时我们可以用nullif函数让聚合函数忽略它: 程序代码 select count(*) as count1, count(nullif(age,0)) as count2, avg(nullif(age,0)) as [avg], max(nullif(age,0)) as [max], min(nullif(age,0)) as [min] from Student 引用内容 count1 count2 avg max min ----------- ----------- ----------- ----------- ----------- 3 2 21 22 20 说明:当以文本显示查询时,若对含空值的列使用聚合函数,SQL查询分析器会发出警告。 引用内容 count1 count2 avg max min ----------- ----------- ----------- ----------- ----------- 3 2 21 22 20 (所影响的行数为 1 行) 警告: 聚合或其它 SET 操作消除了空值。 该文章在 2011/3/13 0:27:51 编辑过 |
关键字查询
相关文章
正在查询... |