SELECT ab.* from WuZKCXX ab WHERE ab.shixrq IS NOT NULL AND fun_date_YorN(ab.shixrq) = 0


create or replace function fun_date_YorN(i_dt varchar2) return number is
v_dt date;
begin
v_dt := to_date(i_dt, 'yyyy-mm-dd');
return 1;
exception
when others then
return 0;
end fun_date_YorN;oracle 日期格式转换错误处理oracle 日期格式转换错误处理

 

相关文章:

  • 2021-06-22
  • 2021-09-24
  • 2022-12-23
  • 2022-12-23
  • 2022-01-21
  • 2022-12-23
猜你喜欢
  • 2022-02-07
  • 2021-07-29
  • 2021-12-23
  • 2022-01-10
  • 2022-12-23
  • 2021-10-19
相关资源
相似解决方案