Oracle 中日期函数用法
Oracle 中日期函数用法
这里需求是把原来的字符型的日期 01.02.2013 改成 20130201 先把字符转换成日期的 再按日期转字符处理
update 表名 a set a.calday = to_char( to_date(a.calday, 'dd.MM.yyyy') , 'yyyyMMdd')
where a.calday is not null
还有 2013-02-01的日期格式
update new_sendata a set a.D_DAY = to_char(to_date(a.calday, 'yyyymmdd') , 'yyyy-mm-dd')
where a.calday is not null
相关推荐
Omega 2020-08-16
娜娜 2020-07-28
Justdoit00 2020-07-04
goodriver 2020-06-17
sunboy 2020-06-14
LuoXinLoves 2020-06-10
Justdoit00 2020-06-08
Justdoit00 2020-06-08
娜娜 2020-06-08
Justdoit00 2020-06-01
oraclemch 2020-05-30
bianxq 2020-05-16
sunboy 2020-02-20
ktyl000 2020-02-20
一昕之代码 2020-02-20
LuoXinLoves 2020-05-04
点滴技术生活 2020-04-27
oraclemch 2020-04-22
Carlos 2020-04-18