Apple software engineers need to know the adoption rate of various iOS versions to plan the rollout of new features.
Write an SQL query to find each iOS version and the percentage of the total fleet running that version.
| device_id(INTEGER) | ios_version(VARCHAR) |
|---|---|
| 1 | 17.0 |
| 2 | 17.0 |
| 3 | 16.5 |
| 4 | 17.0 |
| 5 | 15.0 |
| ios_version(VARCHAR) | adoption_rate(DECIMAL) |
|---|---|
| 17.0 | 60 |
| 16.5 | 20 |
| 15.0 | 20 |