Prefix rr: <http://www.w3.org/ns/r2rml#>
Prefix foaf: <http://xmlns.com/foaf/0.1/>
Prefix ex: <http://example.com/>
Prefix xsd: <http://www.w3.org/2001/XMLSchema#>
//@base <http://example.com/base/>

Create View TriplesMap1 As
  Construct {
    ?s foaf:name ?n .
  }
  With
    ?s = uri(concat("http://example.com/Student/", ?ID))
    ?n = plainLiteral(?Name)
  From
    //[[SELECT "ID", ("FirstName" || ' ' || "LastName") AS Name FROM "Student"]]
    // H2 uses the concat function
    [[SELECT "ID", CONCAT("FirstName", ' ', "LastName") AS "Name" FROM "Student"]]
