# filename: ex293.rq PREFIX dm: PREFIX xsd: SELECT ?amount ?absTest ?roundTest ?ceilTest ?floorTest WHERE { ?s dm:amount ?amount . BIND (abs(?amount) AS ?absTest ) BIND (round(?amount) AS ?roundTest ) BIND (ceil(?amount) AS ?ceilTest ) BIND (floor(?amount) AS ?floorTest ) }