VOS.NorthWindREFExample3

  • Topic
  • Discussion
  • VOS.NorthWindREFExample3(Last) -- DAVWikiAdmin? , 2017-06-29 07:34:51 Edit WebDAV System Administrator 2017-06-29 07:34:51

    Dump all Suppliers with their details.


    PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
    PREFIX ndw:<http://demo.openlinksw.com/schemas/northwind#>
    SELECT distinct  ?s_company ?s_contact ?s_title ?s_address ?s_city ?s_region ?pcode ?s_country ?s_phone ?s_fax ?s_hpage
    WHERE
      { 
        ?sp rdf:type ndw:Supplier .
        ?sp ndw:companyName ?s_company.
        ?sp ndw:contactName ?s_contact.
        ?sp ndw:contactTitle ?s_title.
        ?sp ndw:address ?s_address .
        ?sp ndw:city ?s_city .
        ?sp ndw:region ?s_region .
        ?sp ndw:postalCode ?pcode .
        ?sp ndw:country ?s_country .
        ?sp ndw:phone ?s_phone .
        ?sp ndw:fax ?s_fax .
        ?sp ndw:homePage ?s_hpage .
      }
    

    Sample Data (Live Query Results)