Re: [SQL] NULL DATE
Jan Wieck <jwieck@debis.com>
From: jwieck@debis.com (Jan Wieck)
To: michel@michel.enter.it
Cc: jwieck@debis.com, pgsql-sql@postgreSQL.org
Date: 1998-10-18T21:02:28Z
Lists: pgsql-sql
>
> On Sun, 18 Oct 1998, Jan Wieck wrote:
> >
> > -- attribute a will have NULL value
> > INSERT INTO mytab (b, c) VALUES ('something', 'now');
>
> ok..
> but i have the case
> INSERT INTO mytab (a,b,c) VALUES(2,'something','now');
> now i want to set NULL the date item in this tuple.
>
INSERT INTO mytab (a, b, c) VALUES (2, 'something', NULL);
Jan
--
#======================================================================#
# It's easier to get forgiveness for being wrong than for being right. #
# Let's break this rule - forgive me. #
#======================================== jwieck@debis.com (Jan Wieck) #