Sparql 查询 Sparql 查询

发布于 2024-12-22 13:19:39 字数 229 浏览 0 评论 0原文

我需要使用 sparql 查询 dbpedia:

  1. input: name of a person 输出: 姓氏、性别、年龄、职业

  2. 输入:组织名称 输出: 创始人,如果是公共或私人

  3. 输入:日期 输出: 如果是重要日期,例如:基督徒或复活节

  4. 输入:城市名称 输出: 城市的州、地区。

I need to query dbpedia using sparql:

  1. input: name of a person
    output:
    the surname, sex , age, occupation

  2. input: an organization name
    output:
    the founder, if it is public or private

  3. input: a date
    output:
    if it is an important date for Example: christians, or Easter

  4. input: a city name
    output:
    the state, region of the city.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

禾厶谷欠 2024-12-29 13:19:39

这是#4 的示例

首先,您需要查看 DbPedia 中的城市本体类别。
city 被描述为 city

Select distinct ?city ?location 
Where 
{
   ?city a dbo:City.
   ?city dbo:location ?location.
} 
LIMIT 100

然后你可以通过过滤子句来获取你想要的城市。

Here is an example for #4

First you need to look at the Ontology Class of City in DbPedia.
city is described as city

Select distinct ?city ?location 
Where 
{
   ?city a dbo:City.
   ?city dbo:location ?location.
} 
LIMIT 100

Then you can the filter clause to get the city you want.

微凉 2024-12-29 13:19:39

我想我需要首先了解资源,但是例如
对于 1. 我可以做...

SELECT *
where
{
 <http://dbpedia.org/resource/Name_x> dc:description ?p.
 <http://dbpedia.org/resource/Name_x> foaf:surname ?y
 <http://dbpedia.org/resource/Name_x> foaf:name ?y
 <http://dbpedia.org/resource/Name_x> foaf:office ?y
}       

我正在检查其他人

i think i need to know the resource first but for example
for the 1. i can do ...

SELECT *
where
{
 <http://dbpedia.org/resource/Name_x> dc:description ?p.
 <http://dbpedia.org/resource/Name_x> foaf:surname ?y
 <http://dbpedia.org/resource/Name_x> foaf:name ?y
 <http://dbpedia.org/resource/Name_x> foaf:office ?y
}       

im checking the others

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文