Skip to content

Latest commit

 

History

History
13 lines (12 loc) · 256 Bytes

queries.md

File metadata and controls

13 lines (12 loc) · 256 Bytes

Queries on Wikidata

Get language codes and names

SELECT DISTINCT ?code ?itemLabel 
WHERE
{
  ?item wdt:P305 ?code.
  [] wdt:P424 ?code.
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
ORDER by ?code