5
votes
9answers
3k views
Insert default value when parameter is null
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 procedure to insert values …
