Quacks101
Quacks101

Reputation: 293

Delete ROW where Value in column is NULL

How do I delete out any rows from a table named:

bhxsql2014-dev.dbo.EUACTIVESTORES

Where the column [Store No] has a NULL value

I'm using MS SQL Server Management Studio

Upvotes: 11

Views: 59657

Answers (1)

Pawel Czapski
Pawel Czapski

Reputation: 1864

Here is what you need:

delete from [bhxsql2014-dev].dbo.EUACTIVESTORES
where [Store No] is null

Upvotes: 22

Related Questions