当前位置:Gxlcms > PHP教程 > mongo如何针对浮点数排序

mongo如何针对浮点数排序

时间:2021-07-01 10:21:17 帮助过:6人阅读

   $result = array('limit'=>100,'order'=>array('price'=>-1));
   $fields = array('_id'=>false,'id'=>true);
   $list = $this->classMod->getList($condition,$result,$fields);
   
   

    这是现有的排序结果。。不知道如何能够针对浮点排序

回复内容:

   $result = array('limit'=>100,'order'=>array('price'=>-1));
   $fields = array('_id'=>false,'id'=>true);
   $list = $this->classMod->getList($condition,$result,$fields);
   
   

    这是现有的排序结果。。不知道如何能够针对浮点排序

你的price是字符串,不是浮点数。查看你的驱动说明,怎么才能把数字保存成为浮点数。
MongoDB不支持Decimal类型,所以一些驱动遇到decimal的时候都是保存成为字符串以避免丢失精度。但是这也有很明显的短片,变成字符串排序就有问题了。可行的解决方案包括:

  1. 使用其他类型

  2. 同时使用decimal和float保存两个字段,排序时用float,取值时用decimal。

人气教程排行