在Oracle数据库中将一个14位的数字转化为一个完整的日期时间
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在Oracle数据库中将一个14位的数字转化为一个完整的日期时间相关的知识,希望对你有一定的参考价值。
将上面的数据一次查询显示成一个完整的日期时间
参考技术A comp2.Add(new Leaf("Leaf XYA"));comp2.Add(new Leaf("Leaf XYB"));
root.Add(comp2);
root.Add(new Leaf("Leaf C"));
Leaf leaf = new Leaf("Leaf D");
root.Add(leaf);
root.Remove(leaf);追问
这是什么意思?我是Oracle的新手
参考技术B to_date(time,'yyyy-mm-dd hh24:mi:ss')追问我试过了,报错:单行子查询返回多个行
将时间戳转化为日期格式
参考技术A 1. 将时间戳转换成日期格式:function timestampToTime(timestamp)
var date = new Date(timestamp * 1000);//时间戳为10位需*1000,时间戳为13位的话不需乘1000
Y = date.getFullYear() + '-';
M = (date.getMonth()+1 < 10 ? '0'+(date.getMonth()+1) : date.getMonth()+1) + '-';
D = date.getDate() + ' ';
h = date.getHours() + ':';
m = date.getMinutes() + ':';
s = date.getSeconds();
return Y+M+D+h+m+s;
timestampToTime(1403058804);
console.log(timestampToTime(1403058804));//2014-06-18 10:33:24
注意:如果是Unix时间戳记得乘以1000。比如:
2. 将日期格式转换成时间戳:
var date = new Date('2014-04-23 18:55:49:123');
// 有三种方式获取
var time1 = date.getTime();
var time2 = date.valueOf();
var time3 = Date.parse(date);
console.log(time1);//1398250549123
console.log(time2);//1398250549123
console.log(time3);//1398250549000
以上是关于在Oracle数据库中将一个14位的数字转化为一个完整的日期时间的主要内容,如果未能解决你的问题,请参考以下文章