Dump all Employees including hire date timestamps accurate to the second (as opposed to millisecond)
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.
}
Sample Data (Live Query Results)
- Click *Here* for a live SPARQL Query (via SPARQL Protocol) against a collection of Northwind Employees.