php - 通过mysql语句提取出来的数据要怎么分开处理
PHPz
PHPz 2017-05-16 12:58:53
0
1
349

在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

PHPz
PHPz

学习是最好的投资!

Antworte allen(1)
给我你的怀抱

首先改下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);
Beliebte Tutorials
Mehr>
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage
Über uns Haftungsausschluss Sitemap
Chinesische PHP-Website:Online-PHP-Schulung für das Gemeinwohl,Helfen Sie PHP-Lernenden, sich schnell weiterzuentwickeln!