<?php
set_time_limit(13600); //设置时间
$conn=mysql_connect('localhost','root',''); //连接数据库
mysql_select_db('shuju',$conn);
mysql_query("set names 'gbk'");
$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