Re: Q: ISSUE-41 bNode semantics

Michael & Richard, thanks for this context, which is very useful, as I really had no idea what a null value is. I am still not quite sure. It indicates that a (real, ie non-null)  value is not present, OK. But what does this mean? It could mean simply that data is unavailable, or it could mean that for this particular individual (denoted by this row) there is no such value. In the example case, clearly the former seems correct, but I am sure that there are examples where the latter is the appropriate interpretation (for example, employees of a company with a column for accumulated pension savings, with nulls for employees not in the pension plan.) And unfortunately, the answer to your question about bnodes is, they would be appropriate in the first case but not in the second case. This is because the bnode amounts to an existential assertion: to say

Person/ID=1> <Person#date_of_birth> [] .

is to say that the date of birth *exists*, i.e. there really is a value, even though the particular value is not recorded. Perhaps someone who knows more about the use of null values can say whether such an existential reading is always appropriate.

There is no natural way to say that a property *has no value* in RDF. The best one could do is probably to invoke RDFS or OWL class reasoning, give the property a range, and assert that that the value is outside the range class.

Hope this helps.

Pat


On May 17, 2011, at 1:56 PM, Richard Cyganiak wrote:

> Pat, Michael,
> 
> I'll add a bit of context.
> 
> Given a Person table with columns <ID, name, date_of_birth> and a single row <1, Alice, NULL>, the Direct Mapping would currently produce:
> 
> <Person/ID=1> a <Person> .
> <Person/ID=1> <Person#name> "Alice" .
> 
> The question we are considering is if we should produce an additional triple. Answers that suggest themselves are:
> 
> a) No.
> 
> b) <Person/ID=1> <Person#date_of_birth> [] .
> 
> c) <Person/ID=1> <Person#date_of_birth> rdb2rdf:NULL .
> 
> d) <Person/ID=1> <Person#date_of_birth> "NULL"^^rdb2rdf:NULL .
> 
> The specific sub-question that we couldn't agree on during the call was whether b) would be consistent with the semantics of blank nodes in RDF.
> 
> FWIW, below are some quotes from the SQL spec (specifically, from Part 1 of the 2006 draft of SQL-2008 that I sent around before.)
> 
> Best,
> Richard
> 
> 
> 
> DEFINITIONS
> 
> null value: A special value that is used to indicate the absence of any data value. (p5)
> 
> 
> 4.4.2	The null value
> 
> Every data type includes a special value, called the null value, sometimes denoted by the keyword NULL. This value differs from other values in the following respects:
> 
> Since the null value is in every data type, the data type of the null value implied by the keyword NULL cannot be inferred; hence NULL can be used to denote the null value only in certain contexts, rather than everywhere that a literal is permitted.
> 
> Although the null value is neither equal to any other value nor not equal to any other value — it is unknown whether or not it is equal to any given value — in some contexts, multiple null values are treated together; for example, the <group by clause> treats all null values together. (p15)
> 
> 
> 
> On 17 May 2011, at 19:13, Michael Hausenblas wrote:
> 
>> 
>> Pat,
>> 
>> In today's telecon we had a discussion regarding ISSUE-41 [1] and would appreciate a short advise from your side concerning the following question:
>> [[
>> Is a blank node an accurate representation of a NULL value from a relational database?
>> ]]
>> 
>> Note that this relates to the Direct Mapping (in R2RML one can overwrite the behaviour). We have identified options for dealing with the situation (producing no triple or introducing a bNode representing the NULL value) and would like to hear your opinion on the matter.
>> 
>> Tracker, this is my ACTION-131.
>> 
>> 
>> Cheers,
>> 	Michael
>> 
>> [1] http://www.w3.org/2001/sw/rdb2rdf/track/issues/41
>> 
>> --
>> Dr. Michael Hausenblas, Research Fellow
>> LiDRC - Linked Data Research Centre
>> DERI - Digital Enterprise Research Institute
>> NUIG - National University of Ireland, Galway
>> Ireland, Europe
>> Tel. +353 91 495730
>> http://linkeddata.deri.ie/
>> http://sw-app.org/about.html
>> 
>> 
> 
> 

------------------------------------------------------------
IHMC                                     (850)434 8903 or (650)494 3973   
40 South Alcaniz St.           (850)202 4416   office
Pensacola                            (850)202 4440   fax
FL 32502                              (850)291 0667   mobile
phayesAT-SIGNihmc.us       http://www.ihmc.us/users/phayes

Received on Tuesday, 17 May 2011 22:02:10 UTC