您现在的位置是:首页 >综合 > 2023-08-01 08:56:07 来源:

sql去重函数(sql去重)

导读 大家好,我是小夏,我来为大家解答以上问题。sql去重函数,sql去重很多人还不知道,现在让我们一起来看看吧!1、对想要去除重复的列使用 g...

大家好,我是小夏,我来为大家解答以上问题。sql去重函数,sql去重很多人还不知道,现在让我们一起来看看吧!

1、对想要去除重复的列使用 group by 函数即可。

2、可以使用:select * from test group by tel;

3、这是最简单的一种情况,用关键字distinct就可以去掉

4、example: select distinct * from table(表名) where (条件)

5、CREATE TABLE 临时表 AS (select distinct * from 表名);

6、     drop table 正式表;

7、     insert into 正式表 (select * from 临时表);

8、    drop table 临时表;

本文到此讲解完毕了,希望对大家有帮助。