我在包抛出错误中有一个查询
ORA-01722 : 无效号码。
我尝试了很多方法,但没有运气。
select h.column
from table1 h,table2 c
where c.created_date='17-MAY-17'
and nvl(c.acct_nmbr,0)=nvl(to_number(h.v_acct_num),0)
c.acct_nmbr
是NUMBER(19,0)
h.v_acct_num
是varchar2(4000 byte)
请建议我解决方案