String to timestamp in mysql

前端 未结 2 1381
闹比i
闹比i 2020-12-09 07:49

Is there any way to convert string to UNIX timestamp in MySQL?

For example I have string 2011-12-21 02:20pm which needs to be in unix timestamp format.<

2条回答
  •  轻奢々
    轻奢々 (楼主)
    2020-12-09 08:27

    Though @a'r has already given the correct answer, still something I would like to add here is that the two params STR_TO_DATE() function, 'date string' format and 'date format' string, should have matching placement of '-' and ':'.

    For example following 4 queries return exact same result 2014-05-28 11:30:10

    SELECT STR_TO_DATE('2014-05-28 11:30:10','%Y-%m-%d %H:%i:%s');
    
    SELECT STR_TO_DATE('20140528 11:30:10','%Y%m%d %H:%i:%s');
    
    SELECT STR_TO_DATE('2014-05-28 113010','%Y-%m-%d %H%i%s') ;
    
    SELECT STR_TO_DATE('20140528 113010','%Y%m%d %H%i%s');
    

    Note: the 2 params to STR_TO_DATE() function in each query has matching placement for '-' and ':'

提交回复
热议问题