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
Don't specify the column or value when inserting and the DEFAULT constaint's value will be substituted for the missing value.
I don't know how this would work in a single column table. I mean: it would, but it wouldn't be very useful.