新书推介:《语义网技术体系》
作者:瞿裕忠,胡伟,程龚
   XML论坛     W3CHINA.ORG讨论区     计算机科学论坛     SOAChina论坛     Blog     开放翻译计划     新浪微博  
 
  • 首页
  • 登录
  • 注册
  • 软件下载
  • 资料下载
  • 核心成员
  • 帮助
  •   Add to Google

    >> 本版讨论Semantic Web(语义Web,语义网或语义万维网, Web 3.0)及相关理论,如:Ontology(本体,本体论), OWL(Web Ontology Langauge,Web本体语言), Description Logic(DL, 描述逻辑),RDFa,Ontology Engineering等。
    [返回] 中文XML论坛 - 专业的XML技术讨论区W3CHINA.ORG讨论区 - Web新技术讨论『 Semantic Web(语义Web)/描述逻辑/本体 』 → 关于SPARQL的basic graph to SQL。 查看新帖用户列表

      发表一个新主题  发表一个新投票  回复主题  (订阅本版) 您是本帖的第 8340 个阅读者浏览上一篇主题  刷新本主题   树形显示贴子 浏览下一篇主题
     * 贴子主题: 关于SPARQL的basic graph to SQL。 举报  打印  推荐  IE收藏夹 
       本主题类别: RDF/RDFS    
     happy2009 帅哥哟,离线,有人找我吗?
      
      
      等级:大一(高数修炼中)
      文章:29
      积分:168
      门派:XML.ORG.CN
      注册:2009/9/18

    姓名:(无权查看)
    城市:(无权查看)
    院校:(无权查看)
    给happy2009发送一个短消息 把happy2009加入好友 查看happy2009的个人资料 搜索happy2009在『 Semantic Web(语义Web)/描述逻辑/本体 』的所有贴子 引用回复这个贴子 回复这个贴子 查看happy2009的博客楼主
    发贴心情 关于SPARQL的basic graph to SQL。

    01 Algorithm BGPtoSQL
    02 Input: basic graph pattern BGP = (N;E)
    03 Output: SQL query
    04 Begin
    05 Substitute each distinct blank node label in BGP with a unique variable /* unique for the scope of a SPARQL query */
    06 Assign each edge e 2 E a unique table alias te /*unique for the scope of a SPARQL query*/
    07 Construct the FROM clause to contain all the table aliases /*from += \Triples $te" for each e 2 E*/
    08 For each distinct variable v in BGP do /* Construct the SELECT clause */
    09 If v is a predicate variable then
    10 Let e be the corresponding edge
    11 select += \$te.predicate AS $e.label"
    12 ElseIf v is an object variable then
    13 Let e be the ¯rst incoming edge of the corresponding node n
    14 select += \$te.object AS $n.label"
    15 Else /* v is a subject variable */
    16 Let e be the ¯rst outgoing edge of the corresponding node n
    17 select += \$te.subject AS $n.label"
    18 End If
    19 End For

    20 For each RDF term (a URI or a literal) m in BGP do /* Construct the WHERE clause */
    21 If m is a predicate term then
    22 Let e be the corresponding edge
    23 where += \$te.predicate = $e.label AND "
    24 Else /* m is an object or a subject term */
    25 Let n be the corresponding node
    26 For each incoming edge e of n do
    27 where += \$te.object = $n.label AND " End For
    28 For each outgoing edge e of n do
    29 where += \$te.subject = $n.label AND " End For
    30 End If
    31 End For
    32 For each node n 2 N labeled with a variable do
    33 If n.in-degree > 1 then /* Case 1 */
    34 Let ein
    1 be the ¯rst incoming edge of n
    35 For each incoming edge ein
    i of n and ein
    i 6= ein
    1 do
    36 where + = \$tein
    1
    .object = $tein
    i
    .object AND " End For
    37 End If
    38 If n.out-degree > 1 then /* Case 2 */
    39 Let eout
    1 be the ¯rst outgoing edge of n
    40 For each outgoing edge eout
    i of n and eout
    i 6= eout
    1 do
    41 where + = \$teout
    1
    .subject = $teout
    i
    .subject AND " End For
    42 End If
    43 If n.in-degree > 0 && n.out-degree > 0 then /* Case 3 */
    44 Let ein
    1 be the ¯rst incoming edge of n; Let eout
    1 be the ¯rst outgoing edge of n
    45 where + = \$tein
    1
    .object = $teout
    1
    .subject AND "
    46 End If
    47 End For
    48 For each distinct predicate variable and the corresponding edge e 2 E do
    49 For each edge ei 2 E && ei 6= e && ei.label = e.label do /* Case 4 */
    50 where + = \$te.predicate = $tei .predicate AND " End For
    51 For each node ni 2 N && ni.label = e.label do /* Case 5 */
    52 Let e1 be the ¯rst incoming/outgoing edge of ni /* `/' means `or' */
    53 where + = \$te.predicate = $te1 .object/subject AND " End For
    54 End For
    55 Return \SELECT" + select + \FROM" + from + \WHERE" + where
    56 End Algorithm

    请教各位:谁能解释一下6-19行?万分感谢!


       收藏   分享  
    顶(0)
      




    点击查看用户来源及管理<br>发贴IP:*.*.*.* 2010/1/21 1:03:00
     
     GoogleAdSense
      
      
      等级:大一新生
      文章:1
      积分:50
      门派:无门无派
      院校:未填写
      注册:2007-01-01
    给Google AdSense发送一个短消息 把Google AdSense加入好友 查看Google AdSense的个人资料 搜索Google AdSense在『 Semantic Web(语义Web)/描述逻辑/本体 』的所有贴子 访问Google AdSense的主页 引用回复这个贴子 回复这个贴子 查看Google AdSense的博客广告
    2025/1/3 3:40:19

    本主题贴数1,分页: [1]

    管理选项修改tag | 锁定 | 解锁 | 提升 | 删除 | 移动 | 固顶 | 总固顶 | 奖励 | 惩罚 | 发布公告
    W3C Contributing Supporter! W 3 C h i n a ( since 2003 ) 旗 下 站 点
    苏ICP备05006046号《全国人大常委会关于维护互联网安全的决定》《计算机信息网络国际联网安全保护管理办法》
    62.500ms