Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

like image 416
Quacks101 Avatar asked Mar 08 '26 09:03

Quacks101


1 Answers

Here is what you need:

delete from [bhxsql2014-dev].dbo.EUACTIVESTORES
where [Store No] is null
like image 108
Pawel Czapski Avatar answered Mar 10 '26 02:03

Pawel Czapski