将double转换为mysql日期格式

时间:2013-11-29 05:12:08

标签: mysql datetime epoch

在mysql中,我有一个表学生,该表包含一个列名作为运行时,包含13813876837411381387683739等值。

当我使用covertor转换它时 它显示结果

  

Thu,10 Oct 2013 06:48:03 GMT

所以我的问题是我如何将其转换为使用mysql查询?

2 个答案:

答案 0 :(得分:1)

使用from_unixtime

SELECT
  from_unixtime(timestamp) 
FROM 
  your_table

答案 1 :(得分:0)

试试这个:

select from_unixtime(substring(runtime,1,10)) from students;