SELECT MAX(AVG(SYSDATE - inv_date)) FROM invoice;
What's wrong with this query?
Avg returns single value no
Max requires a group to work on so it dosent execute and give error?
Please explain working
It's a quiz question according to which it won't execute I want to know the reason why it dosent execute I can't figure it out nested aggregate functions are allowed right?
