我想找到世界上最高的山峰
SELECT ?mountLabel WHERE {
?mount wdt:P31 wd:Q8502. #mount is-instance-of mountain
?mount wdt:P2044 ?height. #mount elevation-above-sea-level height
filter(?height = MAX(?height))
SERVICE wikibase:label { bd:serviceParam wikibase:language "en" }
}
ORDER BY DESC(?height)
LIMIT 1
这会返回不正确的值,因为某些数据条目存储在英尺而不是米中。