0%

postgre distict 去重

postgre distict 去重

distinct,这个是只能去重一个字段,但是不能查询出表中字段。比如我就只是针对name去重后在查询所有字段

select distinct on(去重列名), * from 表。可以针对某一个字段去重然后查询出全部字段展示。完美使用。

1
select distinct on(course) course, score * from student order by course, score desc ;