C#怎么对SQL里的某个表的某个字段值设置为NULL
假设有:Test_Table表.Test_Table里有一字段为:Content(可以为空)这时我想要用C#里怎么给SQL的这个Test_Table表里的Content字...
假设有:Test_Table表.
Test_Table里有一字段为:Content(可以为空)
这时我想要用C#里怎么给SQL的这个Test_Table表里的Content字段的设置为NULL呢?SQL语句怎么写.
string update_str="update Test_Table Content='NULL' where ID='123'";
这个update_str里的SQL语句有错吗? 展开
Test_Table里有一字段为:Content(可以为空)
这时我想要用C#里怎么给SQL的这个Test_Table表里的Content字段的设置为NULL呢?SQL语句怎么写.
string update_str="update Test_Table Content='NULL' where ID='123'";
这个update_str里的SQL语句有错吗? 展开
2013-07-29
展开全部
有错
update Test_Table
set
Content='NULL' where ID='123'
update Test_Table
set
Content='NULL' where ID='123'
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询