从oracle中取出的时间格式为2013-10-09T10:24:43+08:00 怎么转换为2013-10-09 10:24:43;

以及2013-10-09 10:24:43怎么转换为2013-10-09T10:24:43+08:00
2024-11-18 07:51:57
推荐回答(3个)
回答1:

可以试试oracle的函数 比如to_date,to_char

回答2:

alter session set nls_date_format='yyyy-mm-dd hh24:mi:ss';

回答3:

select to_char(字段名,'yyyy-mm-dd hh24:mi:ss') from table;