8.2 ondersteunt information_schema views . Iets in deze richting zou moeten werken. U moet natuurlijk uw eigen database-, schema-, tabel- en kolomnamen opgeven.
select *
from information_schema.columns
where table_catalog = 'sandbox'
and table_schema = 'public'
and table_name = 'calendar'
and column_name = 'iso_year';