То есть вы хотите, чтобы вставлялась фактическая строка "NULL"?Попробуйте примерно так:
create table NullTable
(
nvarchar(100) not null default 'NULL',
.... -- your other fields
)
РЕДАКТИРОВАТЬ: Вот полное решение
create table InsertNull
(
Nullfield nvarchar(100) not null default 'NULL',
someint int not null
)
go
insert into insertnull(someint)
select 20
select *
from InsertNull