Geometrycolumns
Geometry_columns is a database metadata construct used by the PostGIS extension for PostgreSQL to catalog geometry columns stored in spatial tables. It provides a centralized, queryable view of all columns that contain geometry data, enabling GIS tools, client applications, and SQL functions to discover geometry-bearing columns without inspecting every table.
Structure and fields: In typical PostGIS installations, geometry_columns is a view with columns such as f_table_catalog,
Usage: A common query lists all geometry columns: SELECT f_table_schema, f_table_name, f_geometry_column, type, srid, coord_dimension FROM
Management: The view is maintained by PostGIS and is updated when geometry columns are created or modified
Limitations: Geometry_columns reflects the current state of the database’s geometry metadata; it depends on the PostGIS