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

在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

学习是最好的投资!

répondre à tous(1)
给我你的怀抱

Changez d'abord le 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);
Derniers téléchargements
Plus>
effets Web
Code source du site Web
Matériel du site Web
Modèle frontal
À propos de nous Clause de non-responsabilité Sitemap
Site Web PHP chinois:Formation PHP en ligne sur le bien-être public,Aidez les apprenants PHP à grandir rapidement!