Hi, I want write query that allow to display all comment of all class in protege and other query to display specific comment please ,Iwante the answer quickly as soon as possible .
+1
A:
Use this query
SELECT DISTINCT ?class ?comment
WHERE { [] a ?class.
?class rdfs:comment ?comment }
Taz
2010-04-02 07:21:35
This will display all classes with their comments
Taz
2010-04-02 07:22:37