Getting Error - ORA-01858: a non-numeric character was found where a numeric was expected

前端 未结 4 1645
野的像风
野的像风 2020-12-01 23:58

I am getting the error in the below sql:

ORA-01858: a non-numeric character was found where a numeric was expected

SELEC         


        
4条回答
  •  半阙折子戏
    2020-12-02 00:47

    I added TO_DATE and it resolved issue.

    Before modification - due to below condition i got this error

    record_update_dt>='05-May-2017'
    

    After modification - after adding to_date, issue got resolved.

    record_update_dt>=to_date('05-May-2017','DD-Mon-YYYY')
    

提交回复
热议问题