ASP.net修改多个关联的表中的某个字段的值的SQL语句是怎么写?

department表:depid、department、depinfo;主键是depidassessment表:assid、staname、department;主键是... department表:depid、department、depinfo;主键是depid
assessment表:assid、staname、department;主键是assid。这两个表的department字段值是关联的。我想要修改主表department的department的值时,怎么实现同步修改assessment的该字段值?假如用触发器又怎么写?
下面是一段代码:
protected void GridView1_RowUpdating(object sender, GridViewUpdateEventArgs e)
{//更新
string id =GridView1.DataKeys[e.RowIndex].Value.ToString();//获取主键值
string depid = ((TextBox)GridView1.Rows[e.RowIndex].Cells[0].Controls[0]).Text;//部门编号
string depname = ((TextBox)GridView1.Rows[e.RowIndex].Cells[1].Controls[0]).Text;//部门名称
string num =((TextBox)GridView1.Rows[e.RowIndex].Cells[2].Controls[0]).Text;//部门人数
string info=((TextBox)GridView1.Rows[e.RowIndex].FindControl("TextBox1")).Text;//获取部门简介
string sqlUpdate = "update department set depid='" + depid + "',department='" + depname + "',depcount='" + num + "',depinfo='" + info + "' where depid='" + id + "'";
myc.sqlUpdate(sqlUpdate);//执行修改
GridView1.EditIndex = -1;
getDepartment();
}
展开
 我来答
hcc_km
2011-05-19
知道答主
回答量:19
采纳率:0%
帮助的人:6.9万
展开全部
要先修改assessment表中的值,再修改department表中的值,try下,出错回滚事务,至于触发器是要在数据库中先建好的sqlserver中有级联删除和级联修改
修罗情伤
2011-05-19 · TA获得超过190个赞
知道小有建树答主
回答量:239
采纳率:0%
帮助的人:73.4万
展开全部
写个存储过程(用事务同步执行),或者再执行一次SQL
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式