MySQL——去重复
把查询结果去除重复记录。注意:原表数据不会被修改,只是查询结果去重。使用的关键字为:distinct。
语法结构:select distinct 字段名 from 表名;
distinct不能以这种形式出现:select 字段名,distinct 字段名 from 表名;会报错。distinct只能出现在所有字段的最前方。
distinct出现在多个字段最前面,表示多个字段联合起来去重。
标签:重复,MySQL,distinct,字段,字段名,表名,select From: https://www.cnblogs.com/qinyu33/p/18033707distinct可以使用分组函数。