Last active
January 2, 2020 07:00
-
-
Save takanakahiko/934f30c51e95a2bad3df666c4cd08be4 to your computer and use it in GitHub Desktop.
そらみスマイルのライブ一覧
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
PREFIX prism: <https://prismdb.takanakahiko.me/prism-schema.ttl#> | |
SELECT ?n ?st ?title | |
WHERE { | |
?live a prism:Live; | |
prism:performer "solami_smile"; | |
prism:songPerformed/prism:name ?title; | |
prism:liveOfEpisode ?ep. | |
?ep a prism:Episode; | |
prism:話数 ?n; | |
prism:サブタイトル ?st. | |
} | |
ORDER BY ?n |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment