PREFIX dc: PREFIX ns: SELECT ?title ?price WHERE { ?x ns:price ?p . ?x ns:discount ?discount . BIND( ( ?p * ( "1"^^ - ?discount ) ) AS ?price ) FILTER ( ( ?price < "20"^^ ) ) ?x dc:title ?title . }