I am trying to create a view so that I can create groups of related products from my product table.
I have already built a simple query to get the items and the output look like the following:
Product | Product2
1234 | 23456
1234 | 4567
1234 | 7895
My goal is to have a view with the following output:
Product | Related1 | Related2 | Related3
1234 | 23456 | 4567 | 7895
23456 | 1234 | 4567 | 7895
so on and so forth.
I'm stuck at the moment trying to understand how to do that.