为提高效率,提问时请提供以下信息,问题描述清晰可优先响应。
【DM版本】:
【操作系统】:
【CPU】:
【问题描述】*:
创建一个圆
drop table if exists dmt;
create table dmt(gemo ST_CircularString);
插入数据提示类型不匹配
insert into dmt (gemo) select dmgeo2.ST_CreateCircle(dmgeo2.ST_GeomFromText('polygon ((0 0, 0 10, 10 10, 10 0, 0 0))'),6) from dual;
改成基础类型ST_Geometry才行
drop table if exists dmt;
create table dmt(gemo ST_Geometry);
平时都是用的基类,方便灵活使用