Home > Database > Mysql Tutorial > 以数据库字段分组显示数据的sql语句(详细介绍)_MySQL

以数据库字段分组显示数据的sql语句(详细介绍)_MySQL

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
Release: 2016-06-01 13:25:03
Original
1050 people have browsed it

bitsCN.com


$dsn = "mysql:host=localhost;dbname=group";
$db = new PDO($dsn, 'root', '');
$db->exec('set names utf8');

$sql = "select conf_id from  `group` group by conf_id";
//$pre = $db->prepare($sql);
//$result_arr = array();
$pre = $db->query($sql);
$result_arr = $pre->fetchAll(PDO::FETCH_ASSOC);

//print_r ($result_arr);
foreach ($result_arr as $v)
{
 echo $v[conf_id]."
";
 $vv = $v[conf_id];
 $re = array();
 $sql1 = "select * from `group` where conf_id = '$v[conf_id]' order by time";
 $sql2 = "select * from `group` where conf_id = '$v[conf_id]' order by time DESC";
 $rs1 = $db->query($sql1);
 $rs2 = $db->query($sql2);
 $re1[$vv] = $rs1->fetchAll(PDO::FETCH_ASSOC);
 $re2[$vv] = $rs2->fetchAll(PDO::FETCH_ASSOC);
 print_r($re1[$vv][0]);
 print_r($re2[$vv][0]);
}

bitsCN.com
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template