how to get nearest value from database in mysql

后端 未结 11 1139
夕颜
夕颜 2020-12-31 16:39

I am using mySQL and CodeIgniter. I have some floating point numbers in my database such as

  • 8.3456
  • 8.5555
  • 4.5556
11条回答
  •  刺人心
    刺人心 (楼主)
    2020-12-31 17:17

    Unfortunately, I think your database will probably do a full table scan for solutions that involve abs, so they will be (very) slow once your table grows. A fast-running solution may be found in this earlier thread.

提交回复
热议问题