SPARQL . . :
select ?x ?y ?z {
values ?x { "x" }
{ select (?x as ?y) ("z" as ?z) {} }
}
-----------------
| x | y | z |
=================
| "x" | | "z" |
-----------------
? x, ? y "x", .
, , . , ? X ? Y, ? X:
select ?x ?y {
{
select ?x {
values ?x { "x" }
values ?y { "y" }
}
}
}
-----------
| x | y |
===========
| "x" | |
-----------
, . 18.2.1 . , , :
{P1 P2 & hellip; }: v , P1, P2, & hellip;
, { ... } , . "" , .
, , , values , , , , , :
select ?x ?y ?yy {
{ select (?y as ?yy) {} }
}
values (?x ?y) { (1 2) }
--------------
| x | y | yy |
==============
| 1 | 2 | |
--------------