create table table_1 (
a varchar(30),
b integer,
c varchar(250) null default 'none'
);
insert into product values ('test','5', null);
insert into product values ('test2','7',null);
insert into product values ('test3','8',null);
insert into product values ('test4','10'); -- Вот так не пройдет, хотя заданно что поле может быть null
select * from product;
a b c
test 5 NULL
test2 7 NULL
test3 8 NULL