This tag is intended for SQL questions where multiple string (character) values should be aggregated into a single value using GROUP BY.
I have this database: And I need to get the following data for each Client: Client Name Contract Name(s) …
sql sql-server join string-aggregationHow to aggregate string( concatenate) with Oracle 10g SQL?
sql string oracle10g string-aggregationI currently am working on a project within Crystal Reports that refuses to use the undocumented function WM_CONCAT, which …
oracle function oracle10g string-aggregation wm-concatI have a below SQL and I am trying to convert the LISTAGG to XMLAGG. My DB version is 12.1 and …
sql oracle listagg string-aggregationMy query is below: select u.Id, STRING_AGG(sf.Naziv, ', ') as 'Ustrojstvena jedinica', ISNULL(CONVERT(varchar(200), (STRING_…
tsql ssms distinct string-aggregation