在图3-2中,各父子元组之间是1:N的层次结构关系。引用关系是IS_A类型,所以图3-2 a 模式映射到XSQL关系模式的描述如下:
 Create Table CELL(
     CID : String,
     CDATA:…)
 Create Table PATHS(
     PID: String,
     P_FATHER: Component-of (CELL),
     PDATA: …)
 Create Table RECTANGLES(
     RID: String,
     R_FATHER: Component-of (PATHS),
     RDATA: …)
 Create Table INSTANCES(
     IID: String,
     I_FATHER: Component-of (CELL),
     IS_A: reference (CELL),
     IDATA: …)