group by

zezo2021

Member
Local time
Today, 22:41
Joined
Mar 25, 2021
Messages
412
friends
as attached image
if the client duplicated can I merge the fields value with "," for each field in one row as the sample attached
 

Attachments

  • Screenshot_1.png
    Screenshot_1.png
    41.3 KB · Views: 86
Please check this DB Sample with the function
the function is great for stack over flow

but the query give me an empty row

Can you pls fix the error
 

Attachments

thanks, friends
if find the solution with qoutation
-------------
SELECT T.ColumnA, GetList("Select ColumnB From Table1 As T1 Where T1.ColumnA = '" & [T].[ColumnA] & "'","",", ") AS ColumnBItems
FROM Table1 AS T
GROUP BY T.ColumnA;
-----------
 

Users who are viewing this thread

Back
Top Bottom