How to speed up multiple aggregation functions apply to the same table
If you want to find the minimum salary among all employees, you may issue a SQL statement like this: select min(emp_salary) from employee Plan 3 SELECT STATEMENT 2 SORT AGGREGATE ...