从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

第1个回答  2013-10-10
可以试试oracle的函数 比如to_date,to_char
第2个回答  2013-10-09
alter session set nls_date_format='yyyy-mm-dd hh24:mi:ss';追问

在C#代码中如何将2013-10-09 10:24:43怎么转换为2013-10-09T10:24:43+08:00

第3个回答  2013-10-10
select to_char(字段名,'yyyy-mm-dd hh24:mi:ss') from table;本回答被提问者采纳