Skip to content

Commit

Permalink
Fix round function doc (#6661)
Browse files Browse the repository at this point in the history
  • Loading branch information
viirya committed Jun 13, 2023
1 parent 6558a82 commit 40c1b9b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion docs/source/user-guide/sql/scalar_functions.md
Original file line number Diff line number Diff line change
Expand Up @@ -412,13 +412,15 @@ random()
Rounds a number to the nearest integer.

```
round(numeric_expression)
round(numeric_expression[, decimal_places])
```

#### Arguments

- **numeric_expression**: Numeric expression to operate on.
Can be a constant, column, or function, and any combination of arithmetic operators.
- **decimal_places**: Optional. The number of decimal places to round to.
Defaults to 0.

### `signum`

Expand Down

0 comments on commit 40c1b9b

Please sign in to comment.