问题描述:Oracle数据库中IN参数个数超过1000
遇到这种情况,想快速解决,数据库有 exists 关键字的话,可以用exists来代替 in 关键字。
数据库解决方法:可以拆分sql用 where id in (1, 2, ..., 999) or id in (1000, ...)这种方法解决。
好的解决方法:
1.用表关联代替IN;2.在where条件中使用子查询,如“select * from b where c in (select d from e ......)”
这样的形式。
顺便在这里扩充一下in和exists。
在sql优化中,in与exists的区别就是,当括号里面值少的话,用in效率会比较高,值多的话用exists效率高。
与not in和not exists不同,not exists效率永远会比not in要高。
总而言之,在SQL语句中要慎用IN,IN一般只用于参数个数较少的情况。