|
<?php
$conn=mysql_connect("127.0.0.1","root","");
mysql_select_db("tongzhuo",$conn); 数据库名
$sql="delete from data_content_72 where '分类名称'='[标签:分类名称]'";//data_content_72表名
//增加个查询
$fine = "SELECT * FROM data_content_72 where '分类名称'='[标签:分类名称]'";
$test=mysql_query($fine);
/* 这里开始就是判断是否存在 */
if(mysql_num_rows($test)>0){ //看是不是存在
echo '分类名重复';
mysql_query($sql);
}else
echo '分类名已添加成功';
INSERT INTO data_content_72 ('分类名称','上级分类ID') VALUES ('[标签:分类名称]','[标签:上级分类ID]')
// end if;
?>
本地采集入sql库,已经开放mysql.dll 采集时判断是否存在这个分类名,测试提示语法错误,请问错误在哪里,请不用说用内容不得重复也能实现,谢谢!
|
|