我正在尝试对 http://robertdavidstevens.wordpress.com/category/ontologies/提供的本体periodic.owl 编写SPARQL 查询
请提供一些关于它的示例查询,我可以用来进一步构建更多。
例如检索特定元素属性的查询
我构建的查询:
select distinct ?b where { ?s a ?b. }
现在,如果我想要有关 Antimony5Ion 的所有详细信息,那么我这样做了:
SELECT *
FROM <http://www.co-ode.org/roberts/pto.owl>
WHERE
{
?a owl:onProperty ?b.
}