very tiny fix to code example

This commit is contained in:
Gavin 2023-05-29 17:41:15 +02:00
parent 7f968cf411
commit 5315bb7840
1 changed files with 1 additions and 1 deletions

View File

@ -497,7 +497,7 @@ This function has different names on different databases, but HQL abstracts thes
select listagg(title, ', ') select listagg(title, ', ')
within group (order by isbn) within group (order by isbn)
from Book from Book
group by elements(authors) group by element(authors)
---- ----
This very useful function produces a string by concatenation of the aggregated values of its argument. This very useful function produces a string by concatenation of the aggregated values of its argument.