> -----Original Message----- > From: pgsql-general-owner@xxxxxxxxxxxxxx [mailto:pgsql-general- > owner@xxxxxxxxxxxxxx] On Behalf Of Emi Lu > Sent: Wednesday, March 08, 2006 2:52 PM > To: pgsql-general@xxxxxxxxxxxxxx > Subject: [GENERAL] column type varchar(128) not null default '' vs > varchar(128) > > Hello, > > When setuping column types, is there the big efficiency difference > between the following two examples? > > col varchar(128) NOT NULL default '' > vs. > col varchar(128) The difference has nothing to do with efficiency and everything to do with what goes into them. The first example does not allow col to be NULL. If you insert a row and do not insert any data into column col, col will get a value of '' (empty) which is not the same thing as NULL. The second example does not have a default and allows NULL values. So if you insert data into the table in the second example, and you do not provide data for column col, then col will be NULL.