I have a sales table and I need to get the sales for each customer in just one row. Example, currently is showing this:
Customer | Product | Amount |
---|---|---|
1 | Pizza | 10 |
1 | Burger | 5 |
I need to show something like this:
Customer | Product | Amount | Product2 | Amount2 |
---|---|---|---|---|
1 | Pizza | 10 | Burger | 5 |