PREFIX ndw:<http://demo.openlinksw.com/schemas/northwind#> PREFIX foaf: <http://xmlns.com/foaf/0.1/> SELECT ?lname ?hdate ?notes WHERE { ?aa a foaf:Person. ?aa ndw:lastName ?lname . ?aa ndw:hireDate ?hdate . filter (xsd:dateTime (?hdate ) > xsd:dateTime ("1992-04-01T10:56:00Z")) ?aa ndw:notes ?notes. } LIMIT 10