Products | Versions |
---|---|
TIBCO Data Virtualization | All Supported Versions |
SELECT customerId, GROUP_CONCAT(DISTINCT customerName ORDER BY customerName ASC SEPARATOR ';') FROM t;
select customerId, GROUP_CONCAT(customerName,';') as customer from t group by customerId;