Answers for "oracle listagg syntax"

SQL
1

oracle sql listagg

SELECT
    job_title,
    LISTAGG(
        first_name,
        ','
    ) WITHIN GROUP(
    ORDER BY
        first_name
    ) AS employees
FROM
    employees
GROUP BY
    job_title
ORDER BY
    job_title;
Posted by: Guest on April-30-2021

Code answers related to "SQL"

Browse Popular Code Answers by Language