0

I have a table , in which there is a date column. This column is of type timestamp. Data in column is showing time in IST time zone . I want to convert it's data into another timezone. Do you have any suggestions for it. I am using Mysql database.

fedorqui
  • 275,237
  • 103
  • 548
  • 598
Durga Dutt
  • 4,093
  • 11
  • 33
  • 48

1 Answers1

1
CONVERT_TZ (dt,from_tz,to_tz)

Example:

SELECT CONVERT_TZ('2006-01-01 11:00:00','+00:00','+10:00');
Saxxi
  • 26
  • 2