Created
May 13, 2015 02:51
-
-
Save ewg118/c059341524d187c76185 to your computer and use it in GitHub Desktop.
Get average weight of RRC 273/1 coins
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
PREFIX nmo: <http://nomisma.org/ontology#> | |
PREFIX crro: <http://numismatics.org/crro/id/> | |
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#> | |
SELECT (AVG(xsd:decimal(?weight)) AS ?avgWeight) WHERE { | |
?objects nmo:hasTypeSeriesItem crro:rrc-273.1 ; | |
nmo:hasWeight ?weight | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment