SPARQLVariable["var"]
represents a variable with label "var" in a SPARQL query.
SPARQLVariable
SPARQLVariable["var"]
represents a variable with label "var" in a SPARQL query.
更多信息和选项
- SPARQLVariable["x"] is used in SPARQL graph patterns and expressions to distinguish a variable with label "x" from a string literal "x".
- The SPARQLVariable wrapper is optional in places where only variables can appear.
- A SPARQLVariable can appear in any position of an RDFTriple.
- An RDFTriple that contains a SPARQLVariable is also known as a triple pattern.
范例
打开所有单元 关闭所有单元基本范例 (1)
Needs["GraphStore`"]Given an RDFStore about people:
store = GraphStore`RDFStore[{GraphStore`RDFTriple[URL["http://example.org/sophia"],
URL["http://xmlns.com/foaf/0.1/firstName"], "Sophia"],
GraphStore`RDFTriple[URL["http://example.org/sophia"], URL["http://xmlns.com/foaf/0.1/lastName"],
"Rodríguez"]}, Association[]];Query all persons together with their first name:
foaf[s_] := URL["http://xmlns.com/foaf/0.1/" <> s];store//SPARQLSelect[{
RDFTriple[SPARQLVariable["person"], foaf["firstName"], SPARQLVariable["first"]]
}]store//SPARQLSelect[{
RDFTriple[SPARQLVariable["person"], foaf["firstName"], SPARQLVariable["first"]],
RDFTriple[SPARQLVariable["person"], foaf["firstName"], SPARQLVariable["last"]]
}]Possible Issues (1)
Needs["GraphStore`"]Given an RDFStore about people:
store = GraphStore`RDFStore[{GraphStore`RDFTriple[URL["http://example.org/sophia"],
URL["http://xmlns.com/foaf/0.1/firstName"], "Sophia"],
GraphStore`RDFTriple[URL["http://example.org/sophia"], URL["http://xmlns.com/foaf/0.1/lastName"],
"Rodríguez"]}, Association[]];Define a pattern that matches the first and last name:
foaf[s_] := URL["http://xmlns.com/foaf/0.1/" <> s];firstLastPatt = {
RDFTriple[SPARQLVariable["person"], foaf["firstName"], SPARQLVariable["first"]],
RDFTriple[SPARQLVariable["person"], foaf["lastName"], SPARQLVariable["last"]]
};The strings "first" and "last" in the "concat" function are interpreted as literals:
store//SPARQLSelect[firstLastPatt -> {
"name" -> SPARQLEvaluation["concat"]["first", " ", "last"]
}]To refer to the variables use the SPARQLVariable wrapper:
store//SPARQLSelect[firstLastPatt -> {
"name" -> SPARQLEvaluation["concat"][SPARQLVariable["first"], " ", SPARQLVariable["last"]]
}]文本
Wolfram Research (2019),SPARQLVariable,Wolfram 语言函数,https://reference.wolfram.com/language/GraphStore/ref/SPARQLVariable.html.
CMS
Wolfram 语言. 2019. "SPARQLVariable." Wolfram 语言与系统参考资料中心. Wolfram Research. https://reference.wolfram.com/language/GraphStore/ref/SPARQLVariable.html.
APA
Wolfram 语言. (2019). SPARQLVariable. Wolfram 语言与系统参考资料中心. 追溯自 https://reference.wolfram.com/language/GraphStore/ref/SPARQLVariable.html 年
BibTeX
@misc{reference.wolfram_2026_sparqlvariable, author="Wolfram Research", title="{SPARQLVariable}", year="2019", howpublished="\url{https://reference.wolfram.com/language/GraphStore/ref/SPARQLVariable.html}", note=[Accessed: 18-August-2026]}
BibLaTeX
@online{reference.wolfram_2026_sparqlvariable, organization={Wolfram Research}, title={SPARQLVariable}, year={2019}, url={https://reference.wolfram.com/language/GraphStore/ref/SPARQLVariable.html}, note=[Accessed: 18-August-2026]}