The sel_agg.sql command file

The SELECT statement in the following command file queries on table data using aggregate functions. It combines the aggregate functions MAX and MIN in a single statement.
SELECT MAX (ship_charge), MIN (ship_charge)
   FROM orders;

Copyright© 2019 HCL Technologies Limited