如何在postgres里使用distinct去重复

2025-05-21 00:04:26

1、打开命令行窗口,sudo su postgres进入数据库。

如何在postgres里使用distinct去重复
如何在postgres里使用distinct去重复

2、\c test进入test数据库。

如何在postgres里使用distinct去重复

3、SELECT * FROM person;提取一下数据查看一下。

如何在postgres里使用distinct去重复

4、SELECT DISTINCT country_of_birth FROM person;这样我们提取的时候就能够去掉重复的数据。

如何在postgres里使用distinct去重复
如何在postgres里使用distinct去重复

5、SELECT DISTINCT country_of_birth FRO怡觎现喾M personORDER BY country_of_birth ASC;我们还可以进行去重后的排序。

如何在postgres里使用distinct去重复
如何在postgres里使用distinct去重复

6、SELECT DISTINCT country_of_birth FRO怡觎现喾M personORDER BY country_of_birth DESC;降序也是可以的。

如何在postgres里使用distinct去重复
如何在postgres里使用distinct去重复

7、SELECT DISTINCT country_of_birth, gender FROM person;我们可以对两个列同时去重,但是只会去重前面的那个。

如何在postgres里使用distinct去重复
如何在postgres里使用distinct去重复

8、不能同时用两个DISTINCT。

如何在postgres里使用distinct去重复
如何在postgres里使用distinct去重复
如何在postgres里使用distinct去重复
声明:本网站引用、摘录或转载内容仅供网站访问者交流或参考,不代表本站立场,如存在版权或非法内容,请联系站长删除,联系邮箱:site.kefu@qq.com。
猜你喜欢