All translations

Enter a message name below to show all available translations.

Message

Found 3 translations.

NameCurrent message text
 h English (en)<syntaxhighlight lang="sparql">
SELECT ?lastName ?firstName
WHERE {
  ?person wdt:P1 wd:Q2 ;      # Selects individuals
         wdt:P3 ?lastName ;  # Retrieves the last name
         wdt:P2 ?firstName .  # Retrieves the first name
}
</syntaxhighlight>
 h French (fr)<syntaxhighlight lang="sparql">
SELECT ?nom ?prenom
WHERE {
  ?personne wdt:P1 wd:Q2 ;    # Sélectionne des personnes
           wdt:P3 ?nom ;      # Récupère le nom de famille
           wdt:P2 ?prenom .  # Récupère le prénom
}
</syntaxhighlight>
 h Dutch (nl)<syntaxhighlight lang="sparql">
SELECT ?naam ?voornaam
WHERE {
  ?persoon wdt:P1 wd:Q2 ;      # Selecteert personen
           wdt:P3 ?naam ;    # Haalt de achternaam op
           wdt:P2 ?voornaam . # Haalt de voornaam op
}
</syntaxhighlight>