How to concat results from column in Oracle SQL. same function as GROUP_CONCAT().
I have data like this
I want to get the result like this.
I already used listagg()
SELECT LISTAGG(S.MEASURE_WEIGHT, '/') WITHIN GROUP (ORDER BY S.Plan_id)
result are:
Without zeroes :( can someone help me?