删除mysql数据库中的重复数据记录

2016-02-19 10:34 4 1 收藏

下面这个删除mysql数据库中的重复数据记录教程由图老师小编精心推荐选出,过程简单易学超容易上手,喜欢就要赶紧get起来哦!

【 tulaoshi.com - 编程语言 】

采用的是下面的方法可删除,假设重复的是test数据库中的title字段
 代码如下:

create table bak as (select * from test group by title having count(*)=1);     
insert into bak (select * from test group by title having count(*)1);        
truncate table test;        
insert into test select * from bak;

来源:http://www.tulaoshi.com/n/20160219/1595102.html

延伸阅读
数据库的使用过程中由于程序方面的问题有时候会碰到重复数据,重复数据导致了数据库部分设置不能正确设置…… 方法一 : declare @max integer,@id integer declare cur_rows cursor local for select 主字段,count(*) from 表名 group by 主字段 having count(*) 1 open cur_rows fetch cur_rows into @id,@max while fetch_st...
标签: 电脑入门
Linux系统操作中,如果文件中的数据过多,想要删除重复数据行是非常麻烦的,查找不方便,那么有什么方法能够快速删除文件重复数据行呢?下面图老师小编就给大家介绍下如何删除文件重复数据行,一起来看看吧。 一、去掉相邻重复的数据行 代码如下: $cat data1.txt | uniq 输出: beijing wuhan beijing wuhan 二、去掉所有重复...
这是在VB.net中为连接MySql中编写的一个类库。你可以使用这个类库直接操作MySql数据库。 在使用这个类库之前,你必须安装 ODBC MYSQL 3.51下载地址:http://www.mysql.com/downloads/api-myodbc-3.51.html Driver ODBC.NET下载地址:http://www.microsoft.com/downloads/details.aspx?FamilyId=6CCD8427-1017-4F33-A062-D1...
Deleting all data from an Access database Sometimes it may be necessary to delete all the data in a database while retaining the table structure. If done manually, this job can quickly become tedious. If your database has many tables, the following code will clear all the data in a hurry. Dim ctr As Container, d...
代码如下: select user_name,count(*) as count from user_table group by user_name having count1; 这个我在很早有发过一个asp下的ACCESS 的

经验教程

423

收藏

58
微博分享 QQ分享 QQ空间 手机页面 收藏网站 回到头部