All Products
Search
Document Center

PolarDB:ST_DeletePyramid

Last Updated:Mar 28, 2026

Deletes a vector pyramid by name.

Syntax

boolean ST_DeletePyramid(cstring name)

Parameters

ParameterDescription
nameThe name of the pyramid to delete.

Examples

Delete a pyramid named roads:

SELECT ST_DeletePyramid('roads');

Output:

 st_deletepyramid
------------------
 t

The function returns t (true) when the pyramid is deleted successfully.