数字格式SQL的Oracle时间戳

时间:2013-03-25 11:57:58

标签: sql oracle datetime

我的表中的datetime列定义为Oracle NUMBER数据类型,其中包含此格式的数据1363709957。

我想在查询中获取这些数字,这样我就可以执行我的插入脚本,这些脚本会将当前时间放在那里。什么是oracle SQL?

1 个答案:

答案 0 :(得分:2)

您的时间戳似乎是标准的Unix时间戳。您需要使用算术来转换此here's a post on OTN about this

and one for the other direction