https://bit.ly/43NPpwi
By Mads Holten Rasmussen
SELECT DISTINCT ?coActorName ?age
WHERE {
?movie dbo:starring ?theActor .
?movie dbo:starring ?otherActor .
?theActor rdfs:label "Mads Mikkelsen"@en .
?otherActor rdfs:label ?coActorName .
?otherActor dbo:birthDate ?bd .
BIND( NOW() as ?today )
BIND( YEAR(?today)-YEAR(?bd) as ?age )
FILTER(LANG(?coActorName) = "en")
}
Questions? Thoughts? Ideas? Let's discuss them over a โ