报错ORA-01830: date format picture ends before converting entire input string

报错ORA-01830: date format picture ends before converting entire input string

image

原语句

select to_char(to_date('2023-01-01 00:00:00','yyyy-mm-dd'),'yyyy-mm-dd') 
from dual

因为to_date对于有时间精度的数据直接转yyyy-mm-dd是不行的话,需要对日期部分进行截取才可以

修改后的语句

select to_char(to_date(
substr('2012-1-1 00:00:00',0,
INSTR('2012-1-1 00:00:00',':',1,1)-3),'yyyy-mm-dd')
,'yyyy-mm-dd') 
from dual
posted @ 2023-03-01 16:56  DbWong_0918  阅读(1018)  评论(0编辑  收藏  举报