Qortora · Search · Indexed page

developer.odp.jig.jpFetched 2026-08-15T04:31:54Z

developer.odp.jig.jp

SPARQL �T���v�� �R�[�h ----------------------- #### SPARQL�R���\�[���o�R select * where { ?s ?p ?o. } limit 10 #### SPARQL API�o�R http://sparql.odp.jig.jp/api/v1/sparql?query=select+*+where+%7B+%3Fs+%3Fp+%3Fo.+%7D+limit+10&output=text ####…

Open original source · Full cached text

SPARQL �T���v�� �R�[�h ----------------------- #### SPARQL�R���\�[���o�R select * where { ?s ?p ?o. } limit 10 #### SPARQL API�o�R http://sparql.odp.jig.jp/api/v1/sparql?query=select+*+where+%7B+%3Fs+%3Fp+%3Fo.+%7D+limit+10&output=text #### �Q�l * [SPARQL Examples](https://wiki1.hbz-nrw.de/display/SEM/SPARQL+Examples) SPARQL�̗� ----------------------- #### �S�f�[�^�w�� select * where { ?s ?p ?o . } limit 10 #### �S���f�[�^�w�� (�O���t�t��) select * where { graph ?g { ?s ?p ?o . }} limit 10 #### �O���t�ꗗ select distinct ?g where { graph ?g { ?s ?p ?o . } } #### �O���t�w�� select distinct * where { graph { ?s ?p ?o . }} #### �����O���t�w�� select distinct * from named from named where { ?s ?p ?o . } #### REGEX�t�B���^ select * where { ?s ?p ?o . filter(regex(str(?s), "����")) } #### xsd:float�̒l�Ńt�B���^ prefix geo: prefix xsd: select * where { { ?s geo:lat ?o . } filter(xsd:float(?o) select * where { ?s ?p ?o . filter(datatype(xsd:date(?o)) = xsd:date) . } limit 5