I have table like this:
+-------+------------+---------+-------------------------+
| Id | Mission | Status | Time |
+-------+------------+---------+-------------------------+
| 1 | Mission 1 | Start | 2020-06-01 09:50:00 |
| 2 | Mission 1 | Running | 2020-06-01 10:50:00 |
| 3 | Mission 1 | Stop | 2020-06-01 11:50:00 |
+-------+------------+---------+-------------------------+
and my expect output is
+------------+-------------------------+---------------------+---------------------+
| Mission | Start | Running | Stop |
+------------+-------------------------+---------------------+---------------------+
| Mission 1 | 2020-06-01 09:50:00 | 2020-06-01 10:50:00 | 2020-06-01 11:50:00 |
+------------+-------------------------+-------------------------------------------+
I found some questions related to my problem but those are not exactly work with mine.