Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How do I clear the value from a cell and make it NULL?

share|improve this question

5 Answers

up vote 41 down vote accepted

If you've opened a table and you want to clear an existing value to NULL, click on the value, and press Ctrl+0 (zero).

share|improve this answer

I think @Zack properly answered the question but just to cover all the bases:

Update myTable set MyColumn = NULL

This would set the entire column to null as the Question Title asks asks.

To set a specific row on a specific column to null use:

Update myTable set MyColumn = NULL where Field = Condition.

This would set a specific cell to null as the inner question asks.

share|improve this answer
1  
His question text asks about clearing the value from a cell, not an entire column. You would potentially have to do a where clause to find the particular record you want to edit. – TheTXI Jan 14 '09 at 21:09
2  
@TheTXI good catch. As written, that SQL is mighty dangerous. – Michael Haren Jan 14 '09 at 21:12
9  
I purposely left the condition off actually... if you look at the Big Bold Question of his title, he asks how you set a column to null. – Jeff Martin Jan 14 '09 at 21:51

If you are using the table interface you can type in NULL (all caps)

otherwise you can run an update statement where you could:

Update table set ColumnName = NULL where [Filter for record here]
share|improve this answer

Ctrl+0 or empty the value and hit enter.

share|improve this answer

Use This:

Update Table Set Column = CAST(NULL As Column Type) where Condition

Like This:

Update News Set Title = CAST(NULL As nvarchar(100)) Where ID = 50
share|improve this answer
1  
Care to explain why your answer is better than the others? I mean you post this about almost half a year later. – tombom May 29 '12 at 14:20
Oh, and welcome to SO :) – tombom May 29 '12 at 14:21

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.