I have database in MYSQL with ID, Req_Order_No(Varchar) , Req_In_Time(DateTime), Req_Out_Time(DateTime)
The Sample row is like below:
1 W0CH546 2014-07-23 09:32:00 2014-07-24 01:42:00
The above Date and Time are in EST format. I want to convert both of them and store in IST format in other columns
I tried SELECT CONVERT_TZ('Req_In_Time','-05:00','+9:30');
But it returns NULL Values.
Please help. Do I need php also?