Write a query to report the average medical claim cost by supplier.
Use the suppliers and medical_claims tables. Include suppliers with no claims, returning a NULL average for them. Round averages to two decimal places.
supplier_name and average_claim_costNULL claim costs in the averageNULL averages last, then sort by supplier name ascending| Column | Type | Description |
|---|---|---|
| supplier_idPK | INT | Unique supplier identifier |
| supplier_name | VARCHAR(150) | Supplier name |
| Column | Type | Description |
|---|---|---|
| claim_idPK | INT | Unique medical claim identifier |
| supplier_id | INT | Supplier associated with the claim |
| claim_cost | DECIMAL(12,2) | Cost of the medical claim |