Home >Database >Mysql Tutorial >Oracle DB 组函数

Oracle DB 组函数

WBOY
WBOYOriginal
2016-06-07 17:32:29991browse

组函数会对行集进行计算,为每个组提供一个结果。与单行函数不同,组函数用于对行集进行计算,从而为每个组提供一个结果。这些集

组函数:语法

组函数应放在SELECT关键字之后。可以使用逗号分隔多个组函数。

使用组函数的准则:

• DISTINCT使函数仅考虑非重复值;ALL使函数考虑每个值(包括重复值)。默认值为ALL,因此无需指定。

• 使用expr参数的函数的数据类型可以是CHAR、VARCHAR2、NUMBER或DATE。

所有组函数都忽略空值。要用一个值替代空值,,使用NVL、NVL2、COALESCE、CASE或DECODE函数。

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn