标签: sql oracle datetime
我的表中的datetime列定义为Oracle NUMBER数据类型,其中包含此格式的数据1363709957。
我想在查询中获取这些数字,这样我就可以执行我的插入脚本,这些脚本会将当前时间放在那里。什么是oracle SQL?
答案 0 :(得分:2)
您的时间戳似乎是标准的Unix时间戳。您需要使用算术来转换此here's a post on OTN about this,
and one for the other direction