suchen

Heim  >  Fragen und Antworten  >  Hauptteil

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

PHPzPHPz2738 Tage vor350

Antworte allen(1)Ich werde antworten

  • 给我你的怀抱

    给我你的怀抱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);

    Antwort
    0
  • StornierenAntwort