Exporting data from ontology - Protege

3.4k Views Asked by At

How to export data from ontology to an excel sheet using Protege. For example, I want to get a table with 2 columns: Class rdf:ID, Super Class rdf:ID.

1

There are 1 best solutions below

1
On BEST ANSWER

solved!.. From the tap SPARQL Query type the query:

SELECT ?subject ?object
    WHERE { ?subject rdfs:subClassOf ?object }

then execute and copy the result directly into an excel sheet :)