STV_Drop_Index

删除空间索引。如果 STV_Drop_Index 找不到指定的空间索引,它将返回错误。

OVER 子句必须为空。

行为类型

不可变

语法

STV_Drop_Index( USING PARAMETERS index = 'index_name' ) OVER ()

参数

index = 'index_name'
索引的名称,类型为 VARCHAR。索引名称不能超过 110 个字符。索引名称中不允许使用斜杠、反斜杠和制表符。

示例

以下示例显示了 STV_Drop_Index 的用法。

删除索引:

=> SELECT STV_Drop_Index(USING PARAMETERS index ='my_polygons') OVER ();
 drop_index
------------
 Index dropped
(1 row)

另请参阅