11 Program for Not Null Constrain in PostgreSQL Atharva Satyendra Agrawal August 13, 2020 Atharva Satyendra Agrawal Program: create table people(name text, age int not null); insert into people values('Jim', 40); insert into people values('John', NULL); insert into people values(NULL, 40); Output: Tweet Share Share Share Related Post