将dd / mm / yyyy字符串转换为MySQL中的Unix时间戳

时间:2011-05-30 16:07:47

标签: mysql

在我的表中,我有一个名为date的varchar列,其中包含日期格式为dd / mm / yyyy的字符串表示形式。如何在SELECT查询中将这些转换为Unix时间?

3 个答案:

答案 0 :(得分:23)

select unix_timestamp(str_to_date('30/05/2011','%d/%m/%Y'));

或:

select unix_timestamp(str_to_date(myfield,'%d/%m/%Y')) from mytable;

答案 1 :(得分:2)

我认为UNIX_TIMESTAMP应该可以解决问题。你能在这里指定你的选择查询吗?

http://dev.mysql.com/doc/refman/5.0/en/date-and-time-functions.html#function_unix-timestamp

答案 2 :(得分:0)

只需使用unix_timestamp功能