PREFIX rdfs: PREFIX schema: INSERT { ?s rdfs:label ?label . } WHERE { ?s a . ?s schema:givenName ?fn . ?s schema:familyName ?ln . BIND(CONCAT(STR(?fn), " ", STR(?ln)) AS ?label) }