This is the table from a select:
+---------+-------+------------+-----------------------------+-------+
|   id    | name  |    date    |          dtinsert           | hour  |
+---------+-------+------------+-----------------------------+-------+
| 1355428 | Max   | 2019-12-16 | 2019-12-16 13:29:21.2500000 | 11:26 |
| 1355433 | Max   | 2019-12-16 | 2019-12-16 13:31:07.5133333 | 11:29 |
| 1355436 | Peter | 2019-12-16 | 2019-12-16 13:32:52.1600000 | 11:30 |
| 1355445 | Peter | 2019-12-16 | 2019-12-16 13:36:34.9466667 | 11:33 |
| 1355456 | Troy  | 2019-12-16 | 2019-12-16 13:41:22.7300000 | 11:36 |
+---------+-------+------------+-----------------------------+-------+
this is what I want
+-----------------------------+-----------------------------+-----------------------------+-----------------------------+-----------------------------+
|              1              |              2              |              3              |              4              |              5              |
+-----------------------------+-----------------------------+-----------------------------+-----------------------------+-----------------------------+
| 1355428                     | 1355433                     | 1355436                     | 1355445                     | 1355456                     |
| Max                         | Max                         | Peter                       | Peter                       | Troy                        |
| 16/12/2019                  | 16/12/2019                  | 16/12/2019                  | 16/12/2019                  | 16/12/2019                  |
| 2019-12-16 13:29:21.2500000 | 2019-12-16 13:31:07.5133333 | 2019-12-16 13:32:52.1600000 | 2019-12-16 13:36:34.9466667 | 2019-12-16 13:41:22.7300000 |
| 11:26                       | 11:29                       | 11:30                       | 11:33                       | 11:36                       |
+-----------------------------+-----------------------------+-----------------------------+-----------------------------+-----------------------------+
 
     
    