query-0b3d532b94c39510e856cb0400fea521

rq turtle/ttl

Exemple operació aritmètica, de dues maneres diferents SELECT DISTINCT ?mun ?munLabel ?hab (2xsd:float(?hab) AS ?h2) ?h3 WHERE { ?mun wdt:P31 wd:Q33146843. ?mun wdt:P1082 ?hab. BIND(3xsd:float(?hab) AS ?h3) SERVICE wikibase:label { bd:serviceParam wikibase:language "ca" . } }

Use at

PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX bd: <http://www.bigdata.com/rdf#>
#Exemple operació aritmètica, de dues maneres diferents
SELECT DISTINCT ?mun ?munLabel ?hab (2*xsd:float(?hab) AS ?h2) ?h3
    WHERE {
        ?mun wdt:P31 wd:Q33146843.
      ?mun wdt:P1082 ?hab.
      BIND(3*xsd:float(?hab) AS ?h3)
        SERVICE wikibase:label {
        bd:serviceParam wikibase:language "ca" .
        }
    }

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v4("?h2") v3("?h3"):::projected v2("?hab"):::projected v1("?mun"):::projected c5(["bd:serviceParam"]):::iri c2(["wd:Q33146843"]):::iri c7(["ca"]):::literal v1 --"wdt:P31"--> c2 v1 --"wdt:P1082"--> v2 bind0[/"'3^^xsd:integer' * http://www.w3.org/2001/XMLSchema#float(?hab)"/] v2 --o bind0 bind0 --as--o v3 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c5 --"wikibase:language"--> c7 end bind1[/"'2^^xsd:integer' * http://www.w3.org/2001/XMLSchema#float(?hab)"/] v2 --o bind1 bind1 --as--o v4