oracle中having的使用

Posted 迷茫于红尘

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了oracle中having的使用相关的知识,希望对你有一定的参考价值。

在oracle中where关键字是无法和聚合函数一起使用的,having可以让我们筛选分组后的各组数据。

用法:

SELECT column_name, aggregate_function(column_name)
FROM table_name
WHERE column_name operator value
GROUP BY column_name
HAVING aggregate_function(column_name) operator value;

例子:

SELECT
  count_date,
  sum(count_data) count_data
from TB_COUNT_DATA
GROUP BY count_date
HAVING SUM(count_data) > 200;










以上是关于oracle中having的使用的主要内容,如果未能解决你的问题,请参考以下文章

在 Oracle 中具有聚合的 NOT HAVING(逆 HAVING)子句

在oracle中where 子句和having子句中的区别

ORACLE 中使用 GROUP BY 和 HAVING COUNT(condition) 的 SQL 查询

oracle中where子句和having子句中的区别

oracle中where 子句和having子句中的区别

leetcode查找重复的电子邮箱——oracle的group by 和having组合使用