Oracle AVG

SELECT AVG(col_name) FROM table_name;

SELECT customer, AVG(prices)
 FROM buys
 GROUP BY customer;
VasteMonde