I have table with weather statistics eg:
----------------------
| day | temp | falls |
|-----|------|-------|
| 1 | 12 | 30 |
| 2 | 18 | 0 |
| 3 | 13 | 10 |
----------------------
and I want to find day, which is most similar:
Today: 14°C, 0mm falls
Most similar day: 3
Is this possible to achieve it in MySQL only?