vote up 4 vote down star

I'm working on a blog migration from a custom built blog to Wordpress. One of the fields that Wordpress is looking for in the database is a date/time stamp set to GMT, which is 4 hours ahead of our time. So I basically need to take our date/time stamp (in YYYY-MM-DD HH:MM:SS format), and add four hours to it. I was looking at the MySQL command "ADDTIME", but I think that only works on selects, not on inserts.

I had worked up a script that exploded the date in to parts, and added 4 hours to the time, but the ensuing logic that would be required to check for when 4 hours pushes in to the next day/month/year seemed a little excessive.

flag

75% accept rate
1  
There's nothing that prevents you from doing it in the database. You could migrate the data over from the existing database without altering the timestamps then do UPDATE blog_table SET blog_timestamp = DATE_ADD(blog_timestamp, INTERVAL 4 HOURS); -- which would accomplish what you want. – artlung Nov 2 at 14:56

5 Answers

vote up 12 vote down check
date($format, strtotime("$date + 4 hours"));
link|flag
vote up 1 vote down

It looks like the TZ of your database is set to GMT (UTC), which is as it should be. You need to convert your local date into GMT when adding to the database.

from the MySQL 5.1 Reference Manual:

CONVERT_TZ(dt,from_tz,to_tz)

CONVERT_TZ() converts a datetime value dt from time zone given by from_tz to the time zone given by to_tz and returns the resulting value. Time zones may be specified as described in Section 5.10.8, “MySQL Server Time Zone Support”. This function returns NULL if the arguments are invalid.

If the value falls out of the supported range of the TIMESTAMP type when converted fom from_tz to UTC, no conversion occurs. The TIMESTAMP range is described in Section 11.1.2, “Overview of Date and Time Types”.

mysql> SELECT CONVERT_TZ('2004-01-01 12:00:00','GMT','MET');
        -> '2004-01-01 13:00:00'

mysql> SELECT CONVERT_TZ('2004-01-01 12:00:00','+00:00','+10:00');
        -> '2004-01-01 22:00:00'
link|flag
note: for the symbolic timezones to work (GMT, PST), you must set up the time zone-related tables in the mysql database (zoneinfo). – dar7yl Nov 2 at 19:42
vote up 2 vote down

Or better in SQL

DATE(DATE_ADD(`Table`.`Column`, INTERVAL 4 HOURS))
link|flag
vote up 5 vote down

There's nothing that prevents ADDTIME() from being used in an INSERT OR UPDATE, but DATE_ADD() is probably what will work best:

INSERT INTO table_name
SET my_datetime = DATE_ADD('2009-11-01 19:30:00', INTERVAL 4 HOURS),
...other insert columns here... ;
link|flag
2  
UPDATE table SET field = DATE_ADD(field, INTERVAL 4 HOURS); is a bit more generic :) – jensgram Nov 2 at 14:56
I presumed SerpicoLugNut had already extracted timestamps so that was the syntax I used. Each extracted timestamp would end up looking that way on INSERT. Funny, I added the generic format as a comment above right when you left yours. :-) – artlung Nov 2 at 15:02
vote up 2 vote down

What about:

date( "Y-m-d H:i:s", strtotime( "2009-08-09 23:44:22" )+4*60*60 )

or even

date( "Y-m-d H:i:s", strtotime( "2009-08-09 23:44:22 + 4 hours" ) )

Might need a bit of error checking, but should solve your problem.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.