Home  >  Article  >  php教程  >  php 删除mysql数据库的重复记录

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

PHP中文网
PHP中文网Original
2016-05-25 17:11:021098browse

<?php
set_time_limit(13600);  //设置时间
$conn=mysql_connect(&#39;localhost&#39;,&#39;root&#39;,&#39;&#39;); //连接数据库
mysql_select_db(&#39;shuju&#39;,$conn);
mysql_query("set names &#39;gbk&#39;");

$query = mysql_query("select min(id) as mid from taobaoguanjianci group by title");   

while($row = mysql_fetch_array($query))
 {

mysql_query("INSERT into taobaoguanjiancitmp select id,cid,title,cat,level3,cname from taobaoguanjianci where id=$row[mid]");
 }
?>

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn