Oracle spatial 周边查询SQL详解数据库

查询距某一点某一距离的所有要素(即我们通常说的周边查询)sql:

select t.objectid,t.comp_type,t.datatype,t.comp_name,t.health_lic,t.shape.SDO_POINT.X as x,t.shape.SDO_POINT.Y as y,t.reg_addr,t.bus_addr from t_publicplaces t where 1=1 and substr(t.comp_type,0,2)=’01’ and sdo_within_distance(t.SHAPE,SDO_GEOMETRY(2001,8307,SDO_POINT_TYPE(116.4,39.9,NULL),NULL,NULL),’distance=1500.0 unit=m’)=’TRUE’

//其中sdo_within_distance是oracle  spatial空间查询   这个函数的具体参数与用法可以到oracle官网上去搜索

原创文章,作者:奋斗,如若转载,请注明出处:https://blog.ytso.com/4463.html

(0)
上一篇 2021年7月16日
下一篇 2021年7月16日

相关推荐

发表回复

登录后才能评论