Oracle spatial 周边查询SQL
生活随笔
收集整理的這篇文章主要介紹了
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://www.cnblogs.com/likehua/archive/2012/10/18/2730100.html
總結
以上是生活随笔為你收集整理的Oracle spatial 周边查询SQL的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 注意语句顺序 防止Servlet Req
- 下一篇: 黑马程序员-4 String类和Stri