User
Rémy Gerbet WMFr
Revision as of 16:19, 21 January 2019 by Rémy Gerbet WMFr (talk | contribs) (Created page with "Requếte Lingua Libre : https://lingualibre.fr/bigdata/#query SELECT DISTINCT (COUNT(?record) AS ?count) WHERE { ?record prop:P2 entity:Q2 . ?record prop:P6...")
Requếte Lingua Libre :
https://lingualibre.fr/bigdata/#query
SELECT DISTINCT
(COUNT(?record) AS ?count)
WHERE {
?record prop:P2 entity:Q2 .
?record prop:P6 ?date .
FILTER(?date >= "2018-07-01T00:00:00Z"^^xsd:dateTime)
FILTER(?date < "2019-01-01T00:00:00Z"^^xsd:dateTime)
SERVICE wikibase:label {
bd:serviceParam wikibase:language "en" .}
}
Requête avec les enregistrement et les locuteurs :
SELECT
(COUNT(DISTINCT ?speaker) AS ?speakers)
(COUNT(DISTINCT ?record) AS ?records)
WHERE {
?record prop:P2 entity:Q2 .
?record prop:P6 ?date .
?record prop:P5 ?speaker .
FILTER(?date >= "2018-07-01T00:00:00Z"^^xsd:dateTime)
FILTER(?date < "2019-01-01T00:00:00Z"^^xsd:dateTime)
SERVICE wikibase:label {
bd:serviceParam wikibase:language "en" .}
}