Home > Database > Mysql Tutorial > body text

mysql数据表按照某个字段分类输出_MySQL

WBOY
Release: 2016-06-01 12:59:11
Original
889 people have browsed it

也许大家有时候会遇到需要将把数据库中的某张表的数据按照该表的某个字段分类输出,比如一张数据表area如下

我们需要将里面的area按照serialize字段进行分类输出,比如这种形式:

areas serialize

阿蓝色,艾沙云 A

重庆森林,传承家园 C

红军楼小区,海员新村 H

.........

要以这种形式放映出来,于是可以这样做,使用mysql中的group_concat()

、group by实现,

select serialize,group_concat(area) as areas from area group by serialize;

Copy after login

则可以得到上面数据表

这里的group_concat(area)是将area按照group by serialize将同个类别(A\B\C)的数据归结在一起,以逗号隔开,如“红军楼小区,海员新村”...

于是就可以分类输出,当然还需要对serialize进行分割(explode())、遍历(foreach)...

以上所述就是本文的全部内容了,希望大家能够喜欢。

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