Below is the original table
+----------+---------+
| Trade | Key |
+----------+---------+
| A | 1 |
| A | 2 |
| A | 3 |
| B | 1 |
| B | 2 |
| B | 3 |
+----------+---------+
Below is the results i need
+----------+---------+---------+---------+
| Trade | Key1 | Key2 | Key3 |
+----------+---------+---------+---------+
| A | 1 | 2 | 3 |
| B | 1 | 2 | 3 |
+----------+---------+---------+---------+
Any pointers to the SQL code is appreciated.
Thanks in advance
Sarge