Home > Database > Mysql Tutorial > sql取重复记录 字段值最大的一条记录

sql取重复记录 字段值最大的一条记录

WBOY
Release: 2016-06-07 17:47:51
Original
4251 people have browsed it

sql取abc字段重复记录的a字段值最大的一条记录

select max(a),b,c from 表名 group by b,c

文件很简单吧。

关于max

max() 函数
max 函数返回一列中的最大值。null 值不包括在计算中。

sql max() 语法
select max(column_name) from table_name注释:min 和 max 也可用于文本列,以获得按字母顺序排列的最高或最低值。

合计函数 (比如 sum) 常常需要添加 group by 语句。
group by 语句
group by 语句用于结合合计函数,根据一个或多个列对结果集进行分组。

sql group by 语法
select column_name, aggregate_function(column_name)
from table_name
where column_name operator value
group by column_name

 

 

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