I have a table as follows
|Cutomers|Orders|Items|
|Cutomer1|Order1|Item1|
|Cutomer1|Order1|Item2|
|Cutomer1|Order1|Item3|
|Cutomer1|Order2|Item1|
|Cutomer1|Order2|Item3|
|Cutomer1|Order2|Item4|
|Cutomer2|Order1|Item6|
| . | . | . |
| . | . | . |
| . | . | . |
I want to have the following table, seems like easy but i have no clue how to deal with it.
|Customers|Items|
|Customer1|Item1|
|Customer1|Item2|
|Customer1|Item3|
|Customer1|Item4|
|Customer2|Item6|
| . | . |
| . | . |
| . | . |
Any suggestions are very much appreciated!