DropGeometryTable — 删除表及其在geometry_columns中的所有引用。
boolean DropGeometryTable(
varchar table_name)
;
boolean DropGeometryTable(
varchar schema_name, varchar table_name)
;
boolean DropGeometryTable(
varchar catalog_name, varchar schema_name, varchar table_name)
;
删除表及其在geometry_columns中的所有引用。 注意:如果未提供模式,则在模式感知的 pgsql 安装上使用 current_schema() 。
更改:2.0.0 提供此函数是为了向后兼容。现在,由于 Geometry_columns 现在是针对系统目录的视图,因此您可以使用 |
SELECT DropGeometryTable ('my_schema','my_spatial_table'); ----RESULT output --- my_schema.my_spatial_table dropped. -- The above is now equivalent to -- DROP TABLE my_schema.my_spatial_table;