Trying to find a solution, but nothings useful so far. I'm trying to pivot SQL table from this format:
+-----------+-------+--------+
| ProductID | Price | Client |
+-----------+-------+--------+
| bread | 12 | A |
| bread | 13 | B |
| bread | 14 | C |
| bread | 15 | E |
| sodapop | 5 | A |
| sodapop | 6 | B |
| sodapop | 7 | C |
| sodapop | 8 | D |
+-----------+-------+--------+
to this
+-----------+----------------+----------------+----------------+----------------+--+
| ProductID | Client A Price | Client B Price | Client C Price | Client D Price | |
+-----------+----------------+----------------+----------------+----------------+--+
| bread | 12 | 13 | 14 | 15 | |
| sodapop | 5 | 6 | 7 | 8 | |
+-----------+----------------+----------------+----------------+----------------+--+