如何将 从数据库里查询出字段值,插入到数据库中,C#语句怎么写?

例如知道G_name的值查询出GroupID,再将GroupID的值插入到此表中stringGpid="selectGroupIDfromguanxb2whereG_na... 例如知道G_name的值查询出GroupID,再将GroupID的值插入到此表中
string Gpid = "select GroupID from guanxb2 where G_name='"+whtv.SelectedNode.Text+"'";
//SqlCommand cmd = new SqlCommand(Gpid,conn);
//cmd.ExecuteNonQuery();
string strins = "insert into guanxb2 (G_name,G_PID) values ('"+textBox1.Text+"','"+Gpid+"')";
SqlCommand cmd1 = new SqlCommand(strins, conn);
cmd1.ExecuteNonQuery();
MessageBox.Show("添加成功!");
这里我想添加的是查询的值,而不是那条查询语句!
Gpid不为空的情况下怎么添加?
展开
 我来答
mawering
2011-01-17 · TA获得超过938个赞
知道小有建树答主
回答量:750
采纳率:0%
帮助的人:212万
展开全部
string Gpid = "select GroupID from guanxb2 where G_name='"+whtv.SelectedNode.Text+"'";
SqlCommand cmd = new SqlCommand(Gpid,conn);
Gpid = cmd.ExecuteScalar();//查询完后判断一下Gpid是否为空,为空就不要执行下面的操作了,会出错的。
string strins = "insert into guanxb2 (G_name,G_PID) values ('"+textBox1.Text+"','"+Gpid+"')";
SqlCommand cmd1 = new SqlCommand(strins, conn);
cmd1.ExecuteNonQuery();
MessageBox.Show("添加成功!");
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式