I have the below records in call_event table;
EVENT_ID TIMESTAMP EVENT
--------- ------------------- ------
9000 03/27/2017 18.00.39 Call Start
9000 03/27/2017 18.08.44 Call END
9001 03/28/2017 14.30.27 Call Start
9001 03/28/2017 15.02.56 Call END
What query should I write in oracle to get the below result
EVENT_ID TIMESTAMP EVENT Call Duration
--------- ------------------- ------ -------------
9000 03/27/2017 18:00:39 Call Start 00:09:23
9000 03/27/2017 18:08:44 Call END 00:09:23
9001 03/28/2017 14.30.27 Call Start 00:33:29
9001 03/28/2017 15.02.56 Call END 00:33:29