为什么这个查询在 spqarql 中不起作用?
Why is this query not working in spqarql?
我是 sparql 的初学者,几个小时前才开始使用它。然而,经过一些练习后,我不知道为什么以下查询不起作用:
select * where
{
?auth dbp:author dbr:The_Lord_of_the_Rings .
} LIMIT 100
所以基本上我只想要这本书的作者,也就是其中的 属性。
使用这个
select * where
{
dbr:The_Lord_of_the_Rings dbp:author ?auth .
} LIMIT 100
Update/Correction:
属性 dbp:author
的含义是:has_author(而不是:is_author_of因为题中主宾的位置暗示了)。
我是 sparql 的初学者,几个小时前才开始使用它。然而,经过一些练习后,我不知道为什么以下查询不起作用:
select * where
{
?auth dbp:author dbr:The_Lord_of_the_Rings .
} LIMIT 100
所以基本上我只想要这本书的作者,也就是其中的 属性。
使用这个
select * where
{
dbr:The_Lord_of_the_Rings dbp:author ?auth .
} LIMIT 100
Update/Correction:
属性 dbp:author
的含义是:has_author(而不是:is_author_of因为题中主宾的位置暗示了)。