Files
doris/docs/documentation/en/sql-reference/sql-functions/aggregate-functions/stddev_EN.md
xy720 7a0c7f45b2 Add English documents for Doris (#1719)
The english documents is translated by machine. So It may has some mistake.
We will fix them later
2019-08-29 13:47:15 +08:00

586 B

STDDEV,STDDEV_POP

Description '35;'35;' 35; Syntax

"`stddev (expl)'

Returns the standard deviation of the expr expression

'35;'35; example

MySQL > select stddev(scan_rows) from log_statis group by datetime;
+---------------------+
| stddev(`scan_rows`) |
+---------------------+
|  2.3736656687790934 |
+---------------------+

MySQL > select stddev_pop(scan_rows) from log_statis group by datetime;
+-------------------------+
| stddev_pop(`scan_rows`) |
+-------------------------+
|      2.3722760595994914 |
+-------------------------+

##keyword STDDEV,STDDEV_POP,POP