首页 > 开发 > 综合 > 正文

用一个实例讲解数据类型不一致引发的后果

2024-07-21 02:42:55
字体:
来源:转载
供稿:网友
数据类型不一致引发的后果:

在执行以下SQL语句后,出现ORA-01722: invalid number:

select distinct serial_number,to_char(first_fire_date,'mm-dd-yyyy') first_fire_date,cis.installation_engineer,cis.technology,customer_name,CCS.site_nm,email_idfrom CTSV_INSTALL_SCHEDULE    cis,CTSV_RFR_RED_FLAG_REVIEW crrfr,ctst_customer_site       ccs,PRty                     pwhere CRRFR.UNIT_NUMBER =DECODE(CIS.SERIAL_NUMBER,'NON-US',CIS.ALTERNATE_SERIAL_NUMBER,CIS.SERIAL_NUMBER)AND FIRST_FIRE_STATUS <> 'RELEASE'and first_fire_date between sysdate and sysdate + 14and ccs.unit_number_id = cis.unit_numberand DECODE(p.lst_nm, NULL, p.frst_nm, p.lst_nm || ', ' || p.frst_nm) =cis.installation_engineerorder by serial_number;

错误分析:

将sysdate + 14改为13后,却可以正确的执行,在测试过sysdate + 13+7/24,依然正确,输出sysdate + 13+7/24后,报错时刚好到4月29号0时。而且过了几分钟后,sysdate + 13+7/24也开始报错,因为到了下一个小时。

最开始以为是sysdate + 14的问题。经过一步一步的删除where中的条件后,最后发现问题在ccs.unit_number_id = cis.unit_number,左边是number类型的,右边是varchar2类型的,因此某些数据转不过去,而且因为这些数据中又有某些条件刚好满足在4月29号0时,因此发生了错误ORA-01722: invalid number现象。


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表