Skip to content

Commit

Permalink
docs: add index function description
Browse files Browse the repository at this point in the history
  • Loading branch information
jbl428 committed Feb 7, 2024
1 parent 9d7bcfe commit c94ff3f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion docs/en/jpql-with-kotlin-jdsl/expressions.md
Original file line number Diff line number Diff line change
Expand Up @@ -225,6 +225,7 @@ locate("Book", path(Book::title))
* CEILING (ceiling)
* EXP (exp)
* FLOOR (floor)
* INDEX (index)
* LN (ln)
* ROUND (round)
* SIGN (sign)
Expand All @@ -240,6 +241,8 @@ exp(path(Book::price))

floor(path(Book::price))

index(path(Book::authors))

ln(path(Book::price))

round(path(Book::price), 2)
Expand All @@ -255,7 +258,6 @@ sqrt(path(Book::price))
|----------|--------------|
| MOD | not yet |
| POWER | not yet |
| INDEX | not yet |

### Datetime functions

Expand Down
4 changes: 3 additions & 1 deletion docs/ko/jpql-with-kotlin-jdsl/expressions.md
Original file line number Diff line number Diff line change
Expand Up @@ -221,6 +221,7 @@ locate("Book", path(Book::title))
* CEILING (ceiling)
* EXP (exp)
* FLOOR (floor)
* INDEX (index)
* LN (ln)
* ROUND (round)
* SIGN (sign)
Expand All @@ -236,6 +237,8 @@ exp(path(Book::price))

floor(path(Book::price))

index(path(Book::authors))

ln(path(Book::price))

round(path(Book::price), 2)
Expand All @@ -251,7 +254,6 @@ sqrt(path(Book::price))
|----------|--------------|
| MOD | not yet |
| POWER | not yet |
| INDEX | not yet |

### Datetime functions

Expand Down

0 comments on commit c94ff3f

Please sign in to comment.