开发者社区 > 博文 > 【JUSTQL Reference】DQL介绍之空间范围查询
分享
  • 打开微信扫码分享

  • 点击前往QQ分享

  • 点击前往微博分享

  • 点击复制链接

【JUSTQL Reference】DQL介绍之空间范围查询

  • 京东城市JUST团队
  • 2021-01-26
  • IP归属:未知
  • 30160浏览

数据查询语句Data Query Language实现了从数据表中查询出用户需要的数据。

1.1.1 空间范围查询

语法:

1.   select  

2.     fieldList  

3.   from  

4.     <tableName>  

5.   where  

6.     geoField within|intersects   

7.     st_makeMBR(lng_min, lat_min, lng_max, lat_max)  

功能:给定一个空间范围,找出那些穿过指定空间范围的所有轨迹

参数:

Ÿ   within:返回完全包含在给定空间范围内的所有轨迹

Ÿ   intersects:返回与给定空间范围有相交的所有轨迹

示例:

1.   select   

2.       order_time,   

3.       order_position,  

4.       attr12   

5.   from   

6.       <tableName>   

7.   where   

8.   order_position within st_makeMBR(116, 39, 116.5, 39.5)  

共0条评论