I have a table that has a column with a default value:
create table t ( value varchar(50) default (\'something\') )
I\'m using a stored
Try an if statement ...
if @value is null insert into t (value) values (default) else insert into t (value) values (@value)