Last Updated: March 15, 2016
·
117
· pavanmehta

Postgres SQL Get Table's Meta Data

select columnname, datatype, charactermaximumlength
from INFORMATIONSCHEMA.COLUMNS where tablename =
{ Insert Any table's name here }