在PostgreSQL中,如何更改列以禁止空值?( )
alter table foo alter bar set not null;
alter table foo alter bar avoid null;
alter table foo alter bar forbid null;
alter table foo alter bar add not null;
以上都不是
在PostgreSQL中,如何更改列以禁止空值?( )
alter table foo alter bar set not null;
alter table foo alter bar avoid null;
alter table foo alter bar forbid null;
alter table foo alter bar add not null;
以上都不是