1

我正在尝试构建一个可以有多个可选字段的联合查询。如果任何可选字段没有相应的语句,则该字段的结果应该为空值。只是正常的可选行为 :) 但是如果您使用Wikidata 查询服务运行下面的代码,即使存在其他(可选)字段的相应语句,结果集也会为空。

如果您删除可选的?Pmemberof字段(该字段没有针对主题的语句),则一切正常,并返回其他语句,顺便说一下,这也是我对原始查询的预期结果。

PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  wdt:  <http://www.wikidata.org/prop/direct/>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  bif:  <bif:>

SELECT DISTINCT  ?wd ?label ?description ?birthname ?placeofbirth ?placeofdeath (GROUP_CONCAT(DISTINCT ?occupation ; separator=', ') AS ?occupations) (GROUP_CONCAT(DISTINCT ?employer ; separator=', ') AS ?employers) (GROUP_CONCAT(DISTINCT ?memberof ; separator=', ') AS ?memberofs)
WHERE
  { SERVICE <http://dbpedia.org/sparql>
      { ?dbp  rdf:type      foaf:Person ;
              rdfs:label    ?l ;
              owl:sameAs    ?wd .
        ?l    bif:contains  "Niki AND Lauda"
        FILTER strstarts(xsd:string(?wd), "http://www.wikidata.org/entity/")
      }
    OPTIONAL
      { ?wd  <http://schema.org/description>  ?description ;
             wdt:P1477             ?Pbirthname ;
             wdt:P19               ?Pplaceofbirth ;
             wdt:P20               ?Pplaceofdeath ;
             wdt:P106              ?Poccupation ;
             wdt:P108              ?Pemployer ;
             wdt:P463              ?Pmemberof # remove this line -> everything works fine
      }
    FILTER ( lang(?description) = "en" )
    SERVICE wikibase:label
      { bd:serviceParam
                  wikibase:language  "[AUTO_LANGUAGE],en" .
        ?Pdescription
                  rdfs:label         ?description .
        ?Pbirthname  rdfs:label      ?birthname .
        ?Pplaceofbirth
                  rdfs:label         ?placeofbirth .
        ?Pplaceofdeath
                  rdfs:label         ?placeofdeath .
        ?Poccupation  rdfs:label     ?occupation .
        ?Pemployer  rdfs:label       ?employer .
        ?Pmemberof  rdfs:label       ?memberof .
        ?wd       rdfs:label         ?label
      }
  }
GROUP BY ?wd ?label ?description ?birthname ?placeofbirth ?placeofdeath
LIMIT   1000

我究竟做错了什么?即使 ?Pmemberof可能没有相应的语句,我也想返回所有其他语句。

4

0 回答 0