Below is an example SQL code to visualize the value and quantity of all orders based on the products ordered.
Copy
SELECT AVG("main_procurement_mgmnt_data"."order_value") AS "Avg Order Value", AVG("main_procurement_mgmnt_data"."order_quantity") AS "Avg Order Quantity", "main_procurement_mgmnt_data"."product" AS "Product"FROM "main"."procurement_mgmnt_data" AS "main_procurement_mgmnt_data"GROUP BY "Product"LIMIT 100