Re: [Virtuoso-users] How to specify power in select cause SPARQL

2015-10-08 Thread Hugh Williams
Hi Maria, Virtuoso has a builtin “power()” function as indicated at: http://docs.openlinksw.com/virtuoso/fn_power.html which can be call in a SPARQL query using the “bif:” prefix for invocation with some thing like: SELECT bif:power

[Virtuoso-users] How to specify power in select cause SPARQL

2015-10-08 Thread Maria Jackson
select ?a?b?c?r where{ graph ?graph1{?a ?b } graph ?graph21{?a ?c } graph ?graph2{?a ?r}} order by asc(?r+(1.1*10^(11))) limit 1 If I write the above expression to denote: ?r + (1.1 x (pow(10,11))) then will it be a correct expression in Virtuoso. I am struggling to find how to express power in V