在mysql中,我有一个表学生,该表包含一个列名作为运行时,包含1381387683741
,1381387683739
等值。
当我使用covertor转换它时 它显示结果
Thu,10 Oct 2013 06:48:03 GMT
所以我的问题是我如何将其转换为使用mysql查询?
答案 0 :(得分:1)
SELECT
from_unixtime(timestamp)
FROM
your_table
答案 1 :(得分:0)
试试这个:
select from_unixtime(substring(runtime,1,10)) from students;