douershuang7356 2016-12-28 13:24
浏览 94
已采纳

将时间戳插入数据库,格式为:1311602030

I am woandering how I can store time to my table in this format:

1311602030

Currently I am doing it this way:

INSERT INTO my_table (time) VALUES ( UTC_TIMESTAMP() )

which gives me back this:

2015-04-14 22:52:11

What I could do is:

INSERT INTO my_table ( time ) VALUES (  strtotime( UTC_TIMESTAMP() )  )

but isn't there a better way?

  • 写回答

1条回答 默认 最新

  • dongwei3866 2016-12-28 13:28
    关注

    Assuming you are using MySQL, what you are looking for is UNIX_TIMESTAMP:

    INSERT INTO my_table (time) VALUES ( UNIX_TIMESTAMP() )
    

    More information here: https://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html#function_unix-timestamp

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?