HighGo Database删除表中的重复数据

目录

文档用途

详细信息

文档用途

本文适用于提供在HighGo Database中,没有主键及唯一索引的情况下,如何清理重复数据。

本文中提供的删除方法不会判断数据的有效性,实际环境中,如数据保留有要求,需谨慎使用。

 

详细信息

创建测试用表

highgo=# create table test(id int,name varchar);

CREATE TABLE

highgo=# 

 

插入测试数据

highgo=# insert into test values(1,'hgdb1');

INSERT 0 1

highgo=# insert into test values(2,'highgo1');

INSERT 0 1

highgo=# insert into test values(2,'highgo2');

INSERT 0 1

highgo=# insert into test values(3,'hgdb1');

INSERT 0 1

highgo=# insert into test values(3,'hgdb2');

INSERT 0 1

highgo=# insert into test values(3,'hgdb3');

INSERT 0 1

highgo=# 

 

 

查看重复值的情况

更多详细信息请登录【瀚高技术支持平台】查看https://support.highgo.com/#/index/docContent/bda97a4702a2812f 

你可能感兴趣的:(Highgo,DB)