ST_Update

更新时间:
复制 MD 格式

Uses a source raster object to update a destination raster object.

Syntax

raster ST_Update(raster source, raster dest);

Parameters

ParameterDescription
sourceThe source raster object.
destThe destination raster object.

Examples

The following example updates the raster object in raster_table where id = 1 with the raster object where id = 2.

Update raster_table Set raster_obj=ST_Update(raster_obj, (Select raster_obj from raster_table where id=2)) where id = 1;