4 lines
201 B
MySQL
4 lines
201 B
MySQL
|
/*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;
|