我们可以从表格列中删除空值吗?
问问题
70 次
2 回答
3
像下面这样的东西会起作用
DELETE FROM Table
WHERE ColumnName IS NULL;
GO
C# 标签把我扔了。SqlCommand
您可以使用该类从 C# 执行此命令。
UPDATE Table
SET ColumnName = 'DefaultValue'
WHERE ColumnName IS NULL
于 2012-09-12T09:03:25.523 回答
1
使用SqlCommand
C# 类更新您的表。如下所示
try
{
string yourSQL= "UPDATE YourTable SET ColumnName = 'YourDefaultValue' WHERE ColumnName IS NULL";
SqlCommand UpdateCmd = new SqlCommand(yourSQL, YourConnection);
UpdateCmd.ExecuteNonQuery();
}
catch (SqlException ex)
{
// Display error
}
于 2012-09-12T09:48:21.290 回答