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

  • 点击前往QQ分享

  • 点击前往微博分享

  • 点击复制链接

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

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

1.1.1 ID时间范围查询

功能:查询对象oid在时间范围R = [tmin; tmax]内的所有对象

1.  select  

2.    fieldList  

3.  from  

4.    <tableName>  

5.  where  

6.    id='xxx'  

7.    and timeField between time_min and time_max  

1.1.2 时空范围查询

语法:

1.  select    

2.    fieldList    

3.  from    

4.    <tableName>    

5.  where    

6.    id='xxx'    

7.    and timeField between time_min and time_max    

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

示例:

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)  

9.    and order_time between '2018-10-01 00:00:00'  

10.   and '2018-11-01 00:00:00'  

共0条评论