搜索

首页  >  问答  >  正文

php - 通过mysql语句提取出来的数据要怎么分开处理

在html中通过以下代码可以得到mysql执行后的数据

$sql = "SELECT MAX(yj), AVG(yj), Min(yj) FROM " . $this->get_table('item') . ' where category_id = ' . intval($category_id);
<?php 
$biuuu = $this->avgprice;
$pr = (implode('',$biuuu));
$prr = floor($pr);
echo $prr;
?>

得出1136922

怎么把得出的结果这样划分

最大值是113,平均值是69,最小值是22

PHPzPHPz2787 天前365

全部回复(1)我来回复

  • 给我你的怀抱

    给我你的怀抱2017-05-16 13:00:53

    首先改下sql

    SELECT MAX(yj) as m_max, AVG(yj) as m_avg, Min(yj) as m_min FROM " . $this->get_table('item') . ' where category_id = ' . intval($category_id);

    回复
    0
  • 取消回复