Skip to content

Commit

Permalink
add docs
Browse files Browse the repository at this point in the history
  • Loading branch information
rluvaton committed Nov 16, 2024
1 parent ccbea44 commit ed2dbad
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions docs/source/user-guide/sql/scalar_functions.md
Original file line number Diff line number Diff line change
Expand Up @@ -642,6 +642,26 @@ nvl2(expression1, expression2, expression3)

_Alias of [nvl](#nvl)._

## Comparison Functions

- [greatest](#greatest)

### `greatest`

Returns the greatest value in a list of expressions.
Returns _null_ if all expressions are _null_.

```
greatest(expression1[, ..., expression_n])
```

#### Arguments

- **expression1, expression_n**:
Expressions to compare and return the greatest value.
Can be a constant, column, or function, and any combination of arithmetic operators.
Pass as many expression arguments as necessary.

## String Functions

- [ascii](#ascii)
Expand Down

0 comments on commit ed2dbad

Please sign in to comment.