答案 0 :(得分:2)
您确定不是手动插入 NULL 吗?
这对我有用:
create or replace table testX(id integer autoincrement, text string, time timestamp_tz(9) default current_timestamp());
insert into testX (text) values ('test message');
我明白了:
然后我插入一个 NULL 值:
insert into testX (time) values (NULL);
现在我明白了:
表定义与您的完全一样:
describe table testX;
我明白了: