一、 某管理系统中,用php语言,后台数据库为mysql系统,表news有如下字段:id--文
一、某管理系统中,用php语言,后台数据库为mysql系统,表news有如下字段:id--文章编号title--文章标题content--文章内容cid--文章分类编号h...
一、 某管理系统中,用php语言,后台数据库为mysql系统,表news有如下字段:id--文章编号 title--文章标题 content--文章内容 cid--文章分类编号 hits--点击量 。创建上表,写出sql语句。
(要求用有数据链接代码,数据取出,数据执行)
用php代码实现插入数据
Sql=”insert ”
用php代码实现更新数据
Sql=”update”
用php代码实现删除数据
Sql=”delete ” 展开
(要求用有数据链接代码,数据取出,数据执行)
用php代码实现插入数据
Sql=”insert ”
用php代码实现更新数据
Sql=”update”
用php代码实现删除数据
Sql=”delete ” 展开
2个回答
展开全部
sql = "CREATE TABLE news
(
id int,
title varchar(50),
content text,
cid int,
hits int,
)";
Sql="insert into news (id,title,content,cid,hits) values('$id','$title','$content','$cid','$hits')";
Sql="update news set hits = hits + 1 ";
Sql="delete news where id = '$id'";
(
id int,
title varchar(50),
content text,
cid int,
hits int,
)";
Sql="insert into news (id,title,content,cid,hits) values('$id','$title','$content','$cid','$hits')";
Sql="update news set hits = hits + 1 ";
Sql="delete news where id = '$id'";
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询