Re: Fabian Pascal and RDBMS deficiencies in fully implementing the relational model

From: David Fetter <david(at)fetter(dot)org>
To: Trent Shipley <tshipley(at)deru(dot)com>
Cc: pgsql-general(at)postgresql(dot)org
Subject: Re: Fabian Pascal and RDBMS deficiencies in fully implementing the relational model
Date: 2006-06-09 01:32:17
Message-ID: 20060609013217.GB23090@fetter.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general pgsql-hackers

On Thu, Jun 08, 2006 at 06:09:21PM -0700, Trent Shipley wrote:
> On Thursday 2006-06-08 15:14, David Fetter wrote:
> > On Thu, Jun 08, 2006 at 05:21:07AM -0700, dananrg(at)yahoo(dot)com wrote:
>
> > on bag theory[1] and 3-value logic[2]. Until they come up with a
> > testable system, or Hell freezes over, whichever comes first,
> > Pascal's book will make a good companion on your shelf to books on
> > Phlogiston[3] theory, or a decent doorstop, whichever you prefer.
>
> I have encountered at least two commercial database products that
> declared every column "NOT NULL". I have always assumed that this
> was defensive, preventing stupid programmer mistakes.

It's not that simple. If there are no NULLs allowed anywhere, that
means that you can't even have them as the output of a SELECT
statement, which means no OUTER JOINs. No repetitions means none
anywhere, which means that they can't be the output of a query either,
and makes it complicated at best to do aggregates. The whole thing is
just ridiculous on its face.

> I recall reading somewhere that Codd proposed multiple flavors of
> nullity. Are there theoretical proposals for databases with logical
> systems having more than three values?

Codd proposed two different NULLs, if I recall right, and some people
have come up with tens of different meanings that NULL might have,
which leads to some major silliness wherein your "truth table" is a
grid that doesn't legibly fit on a piece of A4 paper.

Cheers,
D
--
David Fetter <david(at)fetter(dot)org> http://fetter.org/
phone: +1 415 235 3778 AIM: dfetter666
Skype: davidfetter

Remember to vote!

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message H.J. Sanders 2006-06-09 02:08:23 error 57014
Previous Message Trent Shipley 2006-06-09 01:09:21 Re: Fabian Pascal and RDBMS deficiencies in fully implementing the relational model

Browse pgsql-hackers by date

  From Date Subject
Next Message Qingqing Zhou 2006-06-09 01:52:53 Re: code cleanup for SearchSysCache
Previous Message Christopher Kings-Lynne 2006-06-09 01:17:27 Re: ADD/DROP INHERITS