Translations:Help:SPARQL query examples/6/de

From DataTrek
Revision as of 11:09, 31 January 2025 by Ameisenigel (talk | contribs) (Created page with "== Beispiele == Liste der Episoden von '''''Lower Decks''''' <syntaxhighlight lang="sparql" line> PREFIX wd: <https://data.wikitrek.org/entity/> PREFIX wdt: <https://data.wikitrek.org/prop/direct/> SELECT ?episode ?episodeLabel ?publication ?production WHERE { ?episode wdt:P14 wd:Q10317; wdt:P101 ?publication; wdt:P1 ?production SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE]". }...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Beispiele

Liste der Episoden von Lower Decks

PREFIX wd: <https://data.wikitrek.org/entity/>
PREFIX wdt: <https://data.wikitrek.org/prop/direct/>
	
SELECT ?episode ?episodeLabel ?publication ?production WHERE {
  ?episode wdt:P14 wd:Q10317;
           wdt:P101 ?publication;
           wdt:P1 ?production
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE]". }
  }
ORDER BY ASC (?production)