文档解释
ORA-00962: too many group-by / order-by expressions
Cause: The group-by or order-by column list contain more than 1000 expressions.
Action: Use 1000 or less expressions in the group-by or order-by list.
ORA-00962错误,也称为“太多的GROUP BY / ORDER BY表达式”,出现在GROUP BY或ORDER BY子句中。这意味着用户指定分组或排序表达式的数量超过其所使用的数据库版本所允许的数量。
官方解释
常见案例
SELECT student_id, batch, section,rank FROM student ORDER BY student_id, batch,section,rank;
正常处理方法及步骤
1.检查所用的SQL语句,检查ORDER BY子句中的表达式的数量是否大于所用的数据库的允许的最大表达数。
2.仔细检查ORDER BY子句中的表达式,确保没有多余的或重复的表达式。
3.删除ORDER BY子句中多余的表达式,直到表达式数目低于所允许的最大表达数。
4.重新提交SQL语句,核对是否可以正常工作。