I want to create a table with customer name and all the products purchased by them.
For Ex:
Harish Product 1 and Product 2.
The purchase date and year might be different.
Bascially a two column table with customer name and name of all the Products purchased by them.
That means harish purchased product 1 and Product 2
Normally, you need to query the “product sales fact table” from your data source and ensure it has a customer dimension embedded in the fact data. For example,
I have my data in the above mentioned manner only. Basically in a summarize table I want to concatenate the name of all the products sold to a particular customer.