| From: | Jean-Christian Imbeault <jc(at)mega-bucks(dot)co(dot)jp> |
|---|---|
| To: | pginfo <pginfo(at)t1(dot)unisoftbg(dot)com> |
| Cc: | pgsql-general <pgsql-general(at)postgresql(dot)org> |
| Subject: | Re: pg and number of parameters by insert |
| Date: | 2002-12-04 10:19:02 |
| Message-ID: | 3DEDD696.8030501@mega-bucks.co.jp |
| Views: | Whole Thread | Raw Message | Download mbox | Resend email |
| Thread: | |
| Lists: | pgsql-general |
pginfo wrote:
>
> If I write
> insert into table_1 (field_1,field_2) values ('f1_value',10);
> and field_3 is not declared as NOT NULL it will be correct for pg to execute
> it without any massage.
>
> Is it so?
That's right. If you do not declare the column with a constraint of NOT
NULL, then it is not an error to do:
insert into table_1 (field_1,field_2) values ('f1_value',10);
Why should this query throw an error? You are asking the DB to insert
values into a row. There are no constraints on any of the columns so the
DB is quite happy to do what you ask.
If you want to make it mandatory for an insert to specify a value for a
column then you MUST have a constraint on that column of NOT NULL.
Jc
| From | Date | Subject | |
|---|---|---|---|
| Next Message | pginfo | 2002-12-04 10:32:01 | Re: pg and number of parameters by insert |
| Previous Message | Al Sutton | 2002-12-04 09:47:16 | Broadcast replication (Was Re: 7.4 Wishlist) |