Les fondamentaux des sciences du numerique pour les chimistes
John Samuel
CPE Lyon
Année: 2022-2023
Email: john(dot)samuel(at)cpe(dot)fr
SELECT ?grandeville WHERE {
?grandeville wdt:P31 wd:Q1549591.
}
SELECT ?grandeville WHERE {
?grandeville wdt:P31 wd:Q1549591.
}
LIMIT 100
SELECT ?grandeville ?grandevilleLabel WHERE {
?grandeville wdt:P31 wd:Q1549591.
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
LIMIT 100
SELECT ?grandeville ?grandevilleLabel WHERE {
?grandeville wdt:P31 wd:Q1549591.
?grandeville rdfs:label ?grandevilleLabel.
}
LIMIT 100
SELECT ?grandeville ?grandevilleLabel WHERE {
?grandeville wdt:P31 wd:Q1549591;
rdfs:label ?grandevilleLabel.
FILTER(lang(?grandevilleLabel) = "fr")
}
LIMIT 100
Rémarque: Le sujet n'est pas répété sur la deuxième ligne grâce au point-virgule.
SELECT ?grandeville ?grandevilleLabel WHERE {
?grandeville wdt:P31 wd:Q1549591;
wdt:P17 wd:Q142;
rdfs:label ?grandevilleLabel.
FILTER(lang(?grandevilleLabel) = "fr")
}
LIMIT 100
SELECT ?grandeville ?grandevilleLabel ?image {
?grandeville wdt:P31 wd:Q1549591;
wdt:P17 wd:Q142;
wdt:P18 ?image;
rdfs:label ?grandevilleLabel.
FILTER(lang(?grandevilleLabel) = "fr")
}
SELECT DISTINCT ?grandeville ?grandevilleLabel ?pays ?paysLabel ?image {
?grandeville wdt:P31 wd:Q1549591;
wdt:P17 ?pays;
wdt:P18 ?image.
SERVICE wikibase:label { bd:serviceParam wikibase:language "fr". }
}
LIMIT 100
SELECT DISTINCT ?countryLabel (YEAR(?date) AS ?year) ?population WHERE {
?country wdt:P31 wd:Q6256;
p:P1082 ?populationStatement;
rdfs:label ?countryLabel.
?populationStatement ps:P1082 ?population;
pq:P585 ?date.
FILTER((LANG(?countryLabel)) = "en")
}
ORDER BY (?countryLabel) (?year)
LIMIT 1000
SELECT ?polymer ?polymerLabel WHERE {
?polymer wdt:P31 wd:Q81163;
rdfs:label ?polymerLabel.
FILTER((LANG(?polymerLabel)) = "en")
}
SELECT ?polymer ?polymerLabel WHERE {
?polymer wdt:P31 wd:Q81163;
wdt:P527 wd:Q623;
rdfs:label ?polymerLabel.
FILTER((LANG(?polymerLabel)) = "en")
}
SELECT ?polymer ?polymerLabel WHERE {
?polymer wdt:P31 wd:Q81163;
wdt:P527 wd:Q623, wd:Q556;
rdfs:label ?polymerLabel.
FILTER((LANG(?polymerLabel)) = "en")
}
SELECT ?catalysis ?catalysisLabel WHERE {
?catalysis wdt:P279 wd:Q82264;
rdfs:label ?catalysisLabel.
FILTER((LANG(?catalysisLabel)) = "fr")
}
SELECT ?reaction ?reactionLabel WHERE {
?reaction wdt:P279 wd:Q1786087;
rdfs:label ?reactionLabel.
FILTER((LANG(?reactionLabel)) = "en")
}
SELECT ?process ?processLabel WHERE {
?process wdt:P279 wd:Q214166;
rdfs:label ?processLabel.
FILTER((LANG(?processLabel)) = "en")
}