[EMAIL PROTECTED] writes:
> when I insert the date '1914/01/01' in a column with the 'date' format, the table 
>returns the value '1913/12/31'

Not for me:

regression=# create table foo (f1 date);

CREATE
regression=# 
regression=# insert into foo values ('1914/01/01');
INSERT 158325 1
regression=# select * from foo;

     f1     
------------
 1914-01-01
(1 row)

The usual questions ensue: what PG version are you running, on what
platform, with what timezone and datestyle settings?

                        regards, tom lane

---------------------------(end of broadcast)---------------------------
TIP 3: if posting/reading through Usenet, please send an appropriate
subscribe-nomail command to [EMAIL PROTECTED] so that your
message can get through to the mailing list cleanly

Reply via email to