Skip to content

Instantly share code, notes, and snippets.

@crssnky
Created February 9, 2018 06:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save crssnky/3fd91b6305621c61ede300ecd7efb896 to your computer and use it in GitHub Desktop.
Save crssnky/3fd91b6305621c61ede300ecd7efb896 to your computer and use it in GitHub Desktop.
PREFIX schema: <http://schema.org/>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX imas: <https://sparql.crssnky.xyz/imasrdf/URIs/imas-schema.ttl#>
SELECT ?uName group_concat(?name)
WHERE {
?s rdf:type imas:Unit;
schema:name ?uName;
schema:member ?OI;
schema:member ?mem.
?OI schema:name "大石泉"@ja.
?mem schema:name ?name.
}group by ?uName
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment