VOS.NorthWindREFExample6

  • Topic
  • Discussion
  • VOS.NorthWindREFExample6(Last) -- DAVWikiAdmin? , 2017-06-13 05:43:00 Edit WebDAV System Administrator 2017-06-13 05:43:00

    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.   
      }
    LIMIT 10
    

    Sample Data (Live Query Results)