Oracle ORA-01795:列表中的最大表达式数为1000解决方法!

例如
Select * from tablename where col in (‘col1’,’col2’ ……..)
如果in 后面的Item过多的话,超过1000就会出现这种错误。
解决方法是:
Select * from tablename where col in (‘col1’,’col2’ …….., ‘col1000’) or col in (‘col1001’, …………)

你可能感兴趣的:(Oracle ORA-01795:列表中的最大表达式数为1000解决方法!)