Re: nulls

From: justin <justin(at)emproshunts(dot)com>
To: "James B(dot) Byrne" <byrnejb(at)harte-lyne(dot)ca>
Cc: pgsql-general(at)postgresql(dot)org
Subject: Re: nulls
Date: 2009-03-12 16:04:34
Message-ID: 49B93292.7010209@emproshunts.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

Both ways will work.

Setting the superseded_after to a far off future will work but will have
to set to a real date when it actual does become superseded.

The same is true for nulls It boils down to how you and the users want
to look at the data.

To me to get the all the records that has not been superseded yet is
simple either way.

Select * from some_table where superseded_after IS NULL

or
Select * from some_table where superseded_after > current_date

James B. Byrne wrote:
> I am confronting a design decision involving null values and I
> cannot seem to discern which way to go. Therefore, I would like
> some commentary based on real world experience.
>
> The basic issue is episodic duration, expressed as columns named
> dt_effective_from and dt_superseded_after. Both are datetime types
> containing values normalized to utc. You see where this is going.
>
> The issue is what to enter when the value is known to be unknown, as
> in some indeterminate future date, which may be never. I read that
> relational set values should never be null, as null is indeterminate
> for WHERE clauses and may result in unexpected results. On the
> other hand, setting some artificially excessive future date seems in
> its place seems, to me, to have its own problems.
>
> Since this issue must have been dealt with time and time again in
> the past I would like to know what, if any, consensus has been
> reached on the matter. What is the best way to proceed?
>
>

In response to

  • nulls at 2009-03-12 15:32:59 from James B. Byrne

Browse pgsql-general by date

  From Date Subject
Next Message Alan Hodgson 2009-03-12 16:13:05 Re: I don't want to back up index files
Previous Message Richard Huxton 2009-03-12 16:00:06 Re: nulls