Jedną z opcji byłoby coś w stylu:
select the_value,
abs(the_value - 14) as distance_from_test
from the_table
order by distance_from_test
limit 1
Aby wybrać losowy rekord, możesz dodać , rand()
do order by
klauzula. Wadą tej metody jest to, że indeksy nie dają żadnych korzyści, ponieważ trzeba sortować według wartości pochodnej distance_from_test
.
Jeśli masz indeks dotyczący the_value
i rozluźniasz wymagania, aby wynik był losowy w przypadku remisów, możesz wykonać parę zapytań o ograniczonym zakresie, aby wybrać pierwszą wartość bezpośrednio powyżej wartości testowej i pierwszą wartość bezpośrednio poniżej wartości testowej i wybrać tę, która jest najbliższa do wartości testowej:
(
select the_value
from the_table
where the_value >= 14
order by the_value asc
limit 1
)
union
(
select the_value
from the_table
where the_value < 14
order by the_value desc
limit 1
)
order by abs(the_value - 14)
limit 1