为2个相关表创建RDF并对它们运行SPARQL查询

时间:2012-06-21 05:14:11

标签: rdf sparql jena

以下是我的两张表:

CREATE TABLE Tree (
    "id"            integer NOT NULL,   -- Primary key
    "tags"          varchar(500),
    "rootNode"      integer NOT NULL    -- Referes to Node table's "id"
);
CREATE TABLE Node (
    "id"            integer NOT NULL,   -- Primary key
    "parent"        integer NOT NULL,
    "owner"         varchar(500),
    "data"          varchar(500),
    "tags"          varchar(500)
);

我为这些创建的常见RDF文件如下:

<?xml version="1.0"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:wp="http://example.com/dm#">
    <wp:WPS rdf:about="http://example.com/">
    <wp:node><rdf:Description>  <wp:id>0</wp:id><wp:parent>-1</wp:parent><wp:owner>Kumar</wp:owner><wp:data>--#ABCDEFGHIJKLMNOPQRSTUVWXYZ#--</wp:data><wp:tags>MyTag</wp:tags></rdf:Description></wp:node>
    .....
    <wp:tree><rdf:Description>  <wp:treeId>814</wp:treeId><wp:treeTags>Banking</wp:treeTags><wp:rootNode>19989</wp:rootNode></rdf:Description></wp:tree>
    .......
</wp:WPS></rdf:RDF>

这是为这两个表创建组合rdf文件的正确方法吗?


现在我想运行类似于以下SQL查询的SPQRQL查询:

select w.id, w.tags, w.owner from Node w, Tree t where t.id=100;

我尝试使用FILTER使用以下查询但无法获得所需的结果。这样做的正确方法是什么?

    PREFIX wp: <http://example.com/dm#> 
              SELECT ?x ?id 
              WHERE { 
                ?x wp:id ?id .
                ?x wp:trailId ?trailId .
                ?x wp:rootWP ?rootWP .
                FILTER (?trailId = 100)
                FILTER (?rootWP = ?id)
              }

1 个答案:

答案 0 :(得分:2)

一般来说,您不应自己创建数据库表结构来存储RDF三元组。要做到正确是一件复杂的事情,要使其表现更加困难。如果您只想创建持久性三元组商店,请使用RDF平台的内置功能。对于耶拿,这将是TDBSDB

或者,如果您需要将数据存储在关系模式中,但希望将数据视为RDF三元组以便您可以使用SPARQL查询它,则需要关系 - to-RDF映射工具。有standardisation work in this area和开源实现,例如D2RQ