All posts by WhiteWind

About WhiteWind

I'm a Perl-PHP Developer from India. I'm a great fan of Wordpress & Perl.

How to get the time from UNIX time in GMT to IST in the format ‘2013-09-24 19:16:42’?

SELECT CONVERT_TZ(FROM_UNIXTIME(1380011215),’+05:30′,’+00:00′);

 

o/p

2013-09-24 08:26:55

How to write current time to GMT in one MySQL query in UNIX timestamp?

SELECT UNIX_TIMESTAMP(CONVERT_TZ(CURRENT_TIMESTAMP,’+05:30′,’+00:00′));

 

o/p

1380010908

How to write current time to GMT in one MySQL query?

SELECT CONVERT_TZ(CURRENT_TIMESTAMP,’+05:30′,’+00:00′)

 

o/p

2013-09-24 13:49:56

How to get time in ‘2012-10-16 00:00:00’ format from unix timestamp?

SELECT FROM_UNIXTIME(1380030402)

 

o/p

2013-09-24 19:16:42

How to store value in UNIX timestamp?

SELECT UNIX_TIMESTAMP()

o/p

1380030402