Deletes a vector pyramid by name.
Syntax
boolean ST_DeletePyramid(cstring name)Parameters
| Parameter | Description |
|---|---|
name | The name of the pyramid to delete. |
Examples
Delete a pyramid named roads:
SELECT ST_DeletePyramid('roads');Output:
st_deletepyramid
------------------
tThe function returns t (true) when the pyramid is deleted successfully.