SQL error “ORA-01722: invalid number”

前端 未结 13 1746
野趣味
野趣味 2020-11-29 10:15

A very easy one for someone, The following insert is giving me the

ORA-01722: invalid number

why?

INSERT INTO C         


        
13条回答
  •  温柔的废话
    2020-11-29 10:23

    try this as well, when you have a invalid number error

    In this a.emplid is number and b.emplid is an varchar2 so if you got to convert one of the sides

    where to_char(a.emplid)=b.emplid

提交回复
热议问题