June 9, 2005 at 8:43 am
Hi All
I have used this before but cannot remember what it is. There is a shortcut key for inserting a null value into a field. Any one know?
Thanks,
Blaine
June 9, 2005 at 8:45 am
In enterprise manager :
Ctrl-0
in tsql :
update yourtable set yourfield = null
June 9, 2005 at 8:48 am
Thanks Remi
Much Appreciated
June 9, 2005 at 9:01 am
NP. It's really annoying when you forget this trick and got only 1-2 cells to edit. Then you got to build a full update statement for just that .
June 10, 2005 at 1:30 am
Please remember to use proper syntax through out your scripts for testing nulls;
Avoid using:
where field = null
This is not the same as:
where field is null
Coach James
June 10, 2005 at 6:57 am
set yourfield = null
Viewing 6 posts - 1 through 5 (of 5 total)
You must be logged in to reply to this topic. Login to reply