假设有: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语句有错吗?