So I have this example pretty simple data in mysql
table Reporting
user_id |campaign_id | action_type | date_time |
R12 | T4 | message | 2018-02-03 |
R12 | T4 | call | 2018-05-09 |
I want it to display the output of select query like this :
user_id|campaign_id | message_date_time | call_date_time |
R12 | T4 | 2018-02-03 | 2018-05-09
How to query this table data to make the output like above? any help would be very appreciate .Thank you