PostgreSQL: Documentation: 13: 51.19. pg_description
https://www.postgresql.org/docs/current/catalog-pg-description.html
The catalog pg_description stores optional descriptions (comments) for each database object. Descriptions can be manipulated with the COMMENT command and viewed with psql's \d commands.
pg_description - pgPedia - a PostgreSQL Encyclopedia
https://pgpedia.info/p/pg_description.html
pg_description was added in PostgreSQL 6.3. Purpose. pg_description stores arbitrary user-defined descriptions for objects in the current database defined by the COMMENT ON command.
pg_description | Greenplum Docs
https://docs.greenplum.org/6-10/ref_guide/system_catalogs/pg_description.html
The pg_description system catalog table stores optional descriptions (comments) for each database object. Descriptions can be manipulated with the COMMENT command and viewed with psql's \d...
Postgres Pro Standard : Documentation: 12: 49.19. pg_description
https://postgrespro.com/docs/postgrespro/12/catalog-pg-description
The catalog pg_description stores optional descriptions (comments) for each database object. Descriptions can be manipulated with the COMMENT command and viewed with psql's \d commands.
postgresql - classoid column in pg_description - Stack Overflow
https://stackoverflow.com/questions/45609710/classoid-column-in-pg-description
pg_description has four columns, objoid, classoid, objsubid, and description. description has the comment, but the other three values are needed to know exactly what is being commented on.
PostgreSQL 7.3 Documentation (pg_description)
https://www.c3.hu/docs/pgsql/catalog-pg-description.html
The pg_description table can store an optional description or comment for each database object. Descriptions can be manipulated with the COMMENT command and viewed with psql's \d commands.
PostgreSQL : 41.14. pg_description
https://phpclub.ru/postgresql/doc/catalog-pg-description.html
The catalog pg_description stores optional descriptions (comments) for each database object. Descriptions can be manipulated with the COMMENT command and viewed with psql's \d commands.
pg_description | Apache HAWQ (Incubating) Docs
http://hawq.apache.org/docs/userguide/2.3.0.0-incubating/reference/catalog/pg_description.html
The pg_description system catalog table stores optional descriptions (comments) for each database object. Descriptions can be manipulated with the COMMENT command and viewed with psql's \d...
PostgreSQL - general - Finding description pg_description
https://www.postgresql-archive.org/Finding-description-pg-description-td6151417.html
...query: select * from pg_catalog.pg_description where description like '%FDW%'; 102432;1259;0 regclass, pg_describe_object(classoid, objoid, objsubid), description from pg_description limit 5...
Получение комментариев полей и таблиц Postgresql - PostgreSQL...
https://www.CyberForum.ru/postgresql/thread924001.html
SELECT c.relname, obj_description(c.oid), a.attname, d.description FROM pg_class c, pg_attribute a, pg_description d WHERE c.oid = a.attrelid AND a.attnum > 0 AND (d.objoid = c.oid) AND...
PostgreSQL - Data Type - Tutorialspoint | Description
https://www.tutorialspoint.com/postgresql/postgresql_data_types.htm
Storage Size. Description. bytea. 1 or 4 bytes plus the actual binary string. data type name. integer. regconfig. pg_ts_config. text search configuration. English. regdictionary.
9.25. System Information Functions | Description
https://www.postgres-xl.org/documentation/functions-info.html
Description. pg_describe_object(classid oid, objid oid, objsubid integer). pg_identify_object returns a row containing enough information to uniquely identify the database object specified by catalog OID...
PostgreSQL Source Code: src/include/catalog/pg_description.h File...
https://docs.huihoo.com/doxygen/postgresql/pg__description_8h.html
pg_description.h File Reference. Include dependency graph for pg_description.h: This graph shows which files directly or indirectly include this file
PostgreSQL :: Запрос на извлечение списка таблиц и полей
https://zeka.kiev.ua/postgresql-%D0%BF%D0%BE%D0%BB%D1%83%D1%87%D0%B8%D1%82%D1%8C-%D1%81%D1%82%D1%80%D1%83%D0%BA%D1%82%D1%83%D1%80%D1%83-%D0%BF%D0%BE%D0%BB%D0%B5%D0%B9-%D0%BB%D1%8E%D0%B1%D1%8B%D1%85-%D1%82%D0%B0%D0%B1/
(SELECT pg_description.description::varchar. FROM pg_description WHERE pg_description.objoid = c.oid AND a.attnum = pg_description.objsubid.
Catalogs: pg_description | postgresql 9.4 | API Mirror
https://apimirror.com/postgresql~9.4/catalog-pg-description
The catalog pg_description stores optional descriptions (comments) for each database object. Descriptions can be manipulated with the COMMENT command and viewed with psql's \d commands.
pg_description
http://pgdocptbr.sourceforge.net/pg80/catalog-pg-description.html
O catálogo pg_description armazena descrições opcionais (comentários) para cada objeto do banco de dados. As descrições podem ser manipuladas pelo comando COMMENT, e vistas pelos...
scf_tmpl_pg_description - man pages section 3: Extended Library...
https://docs.oracle.com/cd/E86824_01/html/E54771/scf-tmpl-pg-description-3scf.html
The scf_tmpl_pg_description() function will retrieve the property group's localized description as Some templates will not specify the property group description. The caller is responsible for freeing...
Adding and retrieving comments on PostgreSQL tables | Developer files
https://www.developerfiles.com/adding-and-retrieving-comments-on-postgresql-tables/
select description from pg_description join pg_class on pg_description.objoid = pg_class.oid where relname = "; O en el caso de necesitar de todas la tablas de la base de datos podría ser algo así…