各產業產品滲透率,找出經營最薄弱的一塊
洞察:能源與公用事業平均每客戶僅 3.0 項產品,是六大產業中滲透率最低,且客戶數最少(3 家)——經營深度明顯不足。
SELECT i.industry_name, COUNT(DISTINCT cc.client_id) AS client_count, ROUND(COUNT(cp.product_id)*1.0/COUNT(DISTINCT cc.client_id),2) AS avg_products FROM corporate_clients cc JOIN industries i ON i.industry_id = cc.industry_id LEFT JOIN client_products cp ON cp.client_id = cc.client_id GROUP BY i.industry_name ORDER BY avg_products ASC;
| 產業 | 客戶數 | 平均產品數/客戶 |
|---|---|---|
| 能源與公用事業 | 3 | 3.00 |
| 傳統製造業 | 4 | 3.25 |
| 營建與不動產 | 3 | 3.67 |
| 零售與流通 | 3 | 3.67 |
| 生技醫療 | 3 | 4.33 |
| 半導體與電子零組件 | 4 | 4.50 |