本文介绍了我想在文本框中输入代表值的数据我在Sql查询中感到困惑吗?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
delete firstname, last name from emp where id = "" + textbox.text + ""
这是对还是不正确?
this is correct or not?
推荐答案
string idValue=textbox.Text.Trim();
if(!string.IsNullOrWhiteSpace(idValue))
{
int outvalue;
var id=int.TryParse(idValue)?outvalue:0;
delete from emp where id = "" + idValue+ ""
}
Update emp SET FirstName = ' ', lastName = ' ' where id = "" + textbox.text + ""
这篇关于我想在文本框中输入代表值的数据我在Sql查询中感到困惑吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!