有一张C_well表。存放点数据。其中ID为主键,shape存放点坐标。
select id,shape from SPATIAL_USER.C_WELL 没有问题。
select id,shape.sdo_gtype from SPATIAL_USER.C_WELL ORA-00904: "SHAPE"."SDO_GTYPE": 无效的标识符。
select a.id,a.shape.sdo_gtype from SPATIAL_USER.C_WELL a解决上面ORA-00904错误。
select a.id,a.shape.sdo_point.x,a.shape.sdo_point.y from SPATIAL_USER.C_WELL a 可以读出shape中存放的point的x、y坐标了!