From this sort of table:
| Timestamp | name | value |
| 12:01:01 | foo | 10 |
| 12:01:01 | Bob | 11 |
| 12:01:01 | test | 12 |
| 13:02:05 | foo | 21 |
| 13:02:05 | Bob | 20 |
| 13:02:05 | test | 29 |
| 15:03:06 | foo | 31 |
| 15:03:06 | Bob | 1 |
| 15:03:06 | test | 29 |
...
How can i make a SELECT statement that returns like this for more names
| timestamp | foo | Bob | test | ....
| 12:01:01 | 10 | 11 | 12 |
| 13:02:05 | 21 | 20 | 29 |
| 15:03:06 | 31 | 1 | 29 |
...