删除列中值为 NULL 的行
Delete ROW where Value in column is NULL
如何删除 table 中的任何行,名称为:
bhxsql2014-dev.dbo.EUACTIVESTORES
[Store No] 列的值为 NULL
我正在使用 MS SQL Server Management Studio
这是您需要的:
delete from [bhxsql2014-dev].dbo.EUACTIVESTORES
where [Store No] is null
如何删除 table 中的任何行,名称为:
bhxsql2014-dev.dbo.EUACTIVESTORES
[Store No] 列的值为 NULL
我正在使用 MS SQL Server Management Studio
这是您需要的:
delete from [bhxsql2014-dev].dbo.EUACTIVESTORES
where [Store No] is null