8.2 information_schema विचारों का समर्थन करता है . इन पंक्तियों के साथ कुछ काम करना चाहिए। बेशक आपको अपना खुद का डेटाबेस, स्कीमा, टेबल और कॉलम नाम देना होगा।
select *
from information_schema.columns
where table_catalog = 'sandbox'
and table_schema = 'public'
and table_name = 'calendar'
and column_name = 'iso_year';