oracle 更新空间数据存储过程语句

本文详细介绍了使用SQL更新空间数据的方法,包括更新数据的基本语法和更新空间数据的具体实现。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

[sql]  view plain  copy
  1. </pre><pre code_snippet_id="456198" snippet_file_name="blog_20140822_2_1890999" name="code" class="sql">1:更新数据  
[sql]  view plain  copy
  1. create or replace procedure UpdatePoly(tablename in nvarchar2,  
  2.                                        keyfield in nvarchar2,  
  3.                                        keyvalue in nvarchar2,  
  4.                                        srid in nvarchar2,  
  5.                                        poly in clob) as  
  6. strsql varchar2(8000);  
  7. begin  
  8.  strsql := 'update '|| tablename ||' set shape= sde.st_polygon('''|| poly ||''','||srid||') where '|| keyfield ||'='''|| keyvalue||'''';  
[sql]  view plain  copy
  1.  execute immediate strsql;  
  2.  commit;  
  3. end;  


2:更新空间数据:

[sql]  view plain  copy
  1. create or replace procedure UpdatePoly(keyvalue in nvarchar2,  
  2.                                        srid in INTEGER,  
  3.                                        poly in clob) as  
  4.   
  5. geom sde.st_geometry;  
  6. begin  
  7.  geom:=sde.st_polyfromtext(poly,srid);  
  8.  update SP_ARCHIVESREDLINE t set t.shape = geom where t.archivesid = keyvalue;  
  9. commit;  
  10. end;  
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值