4 lines
201 B
SQL
4 lines
201 B
SQL
/*Write a SQL query to display the average price of the items for each company, showing only the company code.*/
|
|
SELECT AVG(pro_price), pro_com
|
|
FROM item_mast
|
|
GROUP BY pro_com; |