我需要从本体中的个人获取属性值。
我该怎么做?
我有这段代码,但我必须过滤,因为我需要某个人。
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX owl: <http://www.w3.org/2002/07/owl#>
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX oc: <http://localhost:8080/OntoSakaiWS/OntoCompetence.owl#>
SELECT distinct ?x ?value
WHERE {
?x a oc:Asignatura.
?x oc:nombre ?value.
}