Re: Dates with unknown month and/or day - Mailing list pgsql-novice

From Sean Davis
Subject Re: Dates with unknown month and/or day
Date
Msg-id 472F55CB.3030208@mail.nih.gov
Whole thread Raw
In response to Dates with unknown month and/or day  (Sean Davis <sdavis2@mail.nih.gov>)
List pgsql-novice
Christoph Della Valle wrote:
> Hi
>
> I think it is not a very good idea to fill unknown parts of a date with
> '1's, unless you introduce a new attribute "precision" or so, where you
> store which part (y for year only, m for year/month etc) of your date
> really can be taken seriously...
>
> Or you store year/month/day separately. When you want to use a date
> function, you concatenate all parts and cast it as a date. This is clean
> but more complicated. It depends, how often you need date-functions.
> Attention: concatenation with NULL results in NULL, so you need to use
> coalesce.

Thanks, Chris.  This is what I suspected.

Sean

pgsql-novice by date:

Previous
From: Sean Davis
Date:
Subject: Dates with unknown month and/or day
Next
From: Christoph Della Valle
Date:
Subject: Re: Dates with unknown month and/or day