Skip to content

Commit 8c2c1f6

Browse files
authored
Update aggregate-stddev-samp.md (#1653)
1 parent be851e2 commit 8c2c1f6

File tree

1 file changed

+4
-7
lines changed

1 file changed

+4
-7
lines changed

docs/en/sql-reference/20-sql-functions/07-aggregate-functions/aggregate-stddev-samp.md

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,10 @@
22
title: STDDEV_SAMP
33
---
44

5-
Aggregate function.
5+
Returns the sample standard deviation (the square root of VAR_SAMP()) of an expression.
66

7-
The STDDEV_SAMP() function returns the sample standard deviation(the square root of VAR_SAMP()) of an expression.
8-
9-
:::caution
10-
NULL values are not counted.
11-
:::
7+
- NULL values are ignored.
8+
- STDDEV_SAMP() returns `NULL` instead of `0` when there is only one input record.
129

1310
## Syntax
1411

@@ -24,7 +21,7 @@ STDDEV_SAMP(<expr>)
2421

2522
## Return Type
2623

27-
double
24+
Double.
2825

2926
## Example
3027

0 commit comments

Comments
 (0)