LO/OOO Base doesn't come with an HSQLDB version > 2 which means there is no GROUP_CONCAT
function.
Is there a way to simulate this function in HSQLDB versions < 2?
Here's an example for the columns name
and value
before the function is applied:
TIM | 51
TIM | 53
TIM | 55
JOHN | 103
JOHN | 104
I would like to use (H)SQL code in Base that returns something similar to the result of GROUP_CONCAT:
TIM | 51, 53, 55
JOHN | 103, 104
(A similar question has been asked for other DBMS but the answers did't work for me in HSQLDB.)