SELECT 
 A.attnum,
	( SELECT description FROM pg_catalog.pg_description WHERE objoid = A.attrelid AND objsubid = A.attnum ) AS descript,
	A.attname,
	( select typname from pg_type where oid = A.atttypid) AS type,
	A.atttypmod AS data_type 
FROM
	pg_catalog.pg_attribute A
WHERE
	1 = 1 
	AND A.attrelid = ( SELECT oid FROM pg_class WHERE relname = '表名' ) 
	AND A.attnum > 0 
	AND NOT A.attisdropped 
ORDER BY
	A.attnum;

相关文章:

  • 2021-10-14
  • 2022-12-23
  • 2022-12-23
  • 2021-11-07
  • 2021-11-07
  • 2021-11-07
  • 2021-07-18
猜你喜欢
  • 2022-12-23
  • 2022-01-12
  • 2022-12-23
  • 2021-07-26
  • 2022-12-23
相关资源
相似解决方案