SELECT to_char(to_date('20160101 ','yyyymmdd'),'yyyy-mm-dd') from dual
其中
①to_date('20160101 ','yyyymmdd')先把20160101转为日期类型
②to_char把日期类型的to_date('20160101 ','yyyymmdd')又转为char类型,而且格式为yyyy-mm-dd
1、创建测试表,
create table test_date_conv(id varchar2(20),v_date varchar2(200))
2、插入测试数据;
insert into test_date_conv values(1, 20190101122359)
insert into test_date_conv values(2, 20190115132359)
insert into test_date_conv values(3, 20190125052359)
insert into test_date_conv values(4, 20190125122359)
insert into test_date_conv values(5, 2019013119359)
commit
3、查询表中全量数据;select t.*, rowid from test_date_conv t
4、编写语句,转换成成YYYY-MM-DD HH:mm:ss格式;
select t.*, to_char(to_date(v_date,'yyyymmddhh24miss'),'yyyy-mm-dd hh24:mi:ss') v2 sec from test_date_conv t
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)