|
|
|
อยากทราบวิธีการ query ให้ผลลัพธ์ออกมาเป็นกลุ่ม และหาจำนวนของข้อมูลที่เหมือนกัน |
|
|
|
|
|
|
|
Code (PHP)
$db=new mysqli('localhost', 'test', 'test', 'test');
$rs = $db->query('select tistinct brand from table');
$g='';
while ($ro=$rs->fetch_assoc()) $g.= $g . ", sum( brand = '$ro[brand]') $ro[brand]";
$rs = $db->query( "select province $g from table group by province");
while ($ro=$rs->fetch_assoc()) echo '<pre>', print_r($ro, true), '</pre>';
|
|
|
|
|
Date :
2015-09-07 07:46:15 |
By :
NewbiePHP |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|