全部產品
Search
文件中心

PolarDB:ST_SetDateTime

更新時間:Jul 06, 2024

設定柵格對象的起始和終止時間,或波段時間。

文法

raster ST_setDateTime(raster raster_obj,
                      timestamp start,
                      timestamp end);
raster ST_setDateTime(raster raster_obj,
                      integer band,
                      timestamp time);

參數

參數名稱描述
raster_obj需要計算的raster對象。
band波段序號,取值從0開始。
time波段時間。建議使用yyyy-MM-dd HH:mm:ss的格式,例如2020-08-30 18:00:00
start開始時間。建議使用yyyy-MM-dd HH:mm:ss的格式。
end結束時間。建議使用yyyy-MM-dd HH:mm:ss的格式。

樣本

select ST_DateTime(ST_setDateTime(raster_obj, 0, '2020-01-02'::timestamp), 0)
FROM raster_table

       st_datetime        
--------------------------
 Thu Jan 02 00:00:00 2020