min aggregate function in sql code example
Example: how to use aggregate functions in sql
This is the example.Aggregate function is AVG.production.products is the table.
SELECT
AVG(list_price) avg_product_price
FROM
production.products;
This is the example.Aggregate function is AVG.production.products is the table.
SELECT
AVG(list_price) avg_product_price
FROM
production.products;