Tuesday, September 28, 2010

Accessing postgress Meta - info ANSI catalog

A short example : to get columns...

SELECT
  columns.table_catalog,
  columns.table_schema,
  columns.table_name,
  columns.column_name
FROM
  information_schema.columns;

No comments: