数据库
首页 > 数据库> > 在mysql上构建一个select distinct(zend_db)

在mysql上构建一个select distinct(zend_db)

作者:互联网

我有以下表格,我想要在列[代码]上做一个选择区别,我不需要三次获得“A”.

[ ID ]   [ CODE ]     [ LIBELLE ]
1         A        LIBELLE1  
2         B        LIBELLE2
3         C        LIBELLE3
4         A        LIBELLE4  
5         A        LIBELLE5
6         D        LIBELLE6 

我希望结果如下

[ ID ] [ CODE ] [ LIBELLE ]
1         A        LIBELLE1  
2         B        LIBELLE2
3         C        LIBELLE3
6         D        LIBELLE6 

解决方法:

只需添加

group by code 
ORDER BY code ASC

在您的SQL查询结束时

select * from table
group by code 
ORDER BY code ASC

标签:mysql,zend-framework,zend-db
来源: https://codeday.me/bug/20190621/1257368.html