oracle ORA-01722无效数字

我有一个表table_a 里面有一个字段field中保存了用户的编号,编号使用逗号隔开,例如:379,380,386,390,503
我做查询select * from user where user_id in (379,380,386,390,503); 是正确的。
但是当我查询 select * from user where user_id in (select field from table_a where id = 1);时却报oracle ORA-01722无效数字,求高手解答。
最新回答
生生漫

2025-03-29 00:07:32

select * from user where user_id in (select field from table_a where id = 1);
因为你的field 和user_id 类型不一致
你试试下面的可以不
select * from user where user_id in '('+(select field from table_a where id = 1)+')';
追问
谢谢呀, 不可以, 还有其他办法吗?
最初

2025-03-29 14:10:43

select * from user
where
INSTR( (select ',' || field || ',' from table_a where id = 1), ',' || TRIM(TO_CHAR(user_id )) || ',' ) > 0
仰天长啸我也要穿越

2025-03-29 13:49:25

  1. 对于两个类型不匹配(一个数字类型,一个非数字类型,同下)的值进行赋值操作;

  2. 两个类型不匹配的值进行比较操作(例如,“=”);

  3. to_number函数中的值,非数字的,比如,to_number('a')肯定是不行的,

  4. to_number('12306')则是正常的。

  5. 要避免这些问题,要做到在写sql语句时就好认真处理好不同类型的问题。

  6. 比如如果要比较的话,同时都用to_number强制转换(to_number(字段a) = to_number(字段b)。

  7. 或者同时转换为字符串类型。

  8. 在语句中使用to_number函数时,要保证值一定是数字格式,或者写好异常处理。

  9. 当我们碰到这个错误提示时,就从所有用到的数字类型的字段开始检查,逐一排查,从而解决问题。

旧时青春

2025-03-29 14:22:59

select * from user where user_id in (select to_char(field) from table_a where id = 1);
这个错误是因为用数字类型匹配字符串类型,转换成相同类型就可以了
参考oracle 函数 to_char() to_number()
夏日梧桐雨

2025-03-29 09:15:13

非常好,网上找了一圈这个 where 字段 in 01722无效数字 关键字 这个回答正中要害,解决问题