very tiny fix to code example
This commit is contained in:
parent
e17c1d7686
commit
27d90c643b
|
@ -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.
|
||||||
|
|
Loading…
Reference in New Issue