oracle 日期格式转换错误处理

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;

猜你喜欢

转载自www.cnblogs.com/maweiwei/p/11069073.html
今日推荐