Vous n'êtes pas identifié(e).
- Contributions : Récentes | Sans réponse
Pages : 1
#1 09/04/2010 13:03:14
- mich30
- Membre
[RESOLU] afficher les commentaires
Bonjour
cela affiche les colonnes de ma tables
select column_name from information_schema.columns
where table_name = ma table;
mais comment puis je afficher les commentaires associés a mon champ
(afficher les informations de type COMMENT ON SCHEMA table IS ' commentaire de cette table ';
merci
Hors ligne
#2 09/04/2010 13:17:22
- gleu
- Administrateur
Re : [RESOLU] afficher les commentaires
Guillaume.
Hors ligne
#3 09/04/2010 14:05:02
- mich30
- Membre
Re : [RESOLU] afficher les commentaires
ok erreur de ma part sur la vie du site
j'ai trouvé de moi meme
merci et bon week end
SELECT distinct
info.table_schema,info.table_name, pde.description
from
(select c.*, pc.*, pc.oid as oid
from pg_catalog.pg_class as pc, information_schema.columns as c
where pc.relname=c.table_name and c.table_schema != 'information_schema' and c.table_schema != 'pg_catalog') as info
LEFT OUTER JOIN
(SELECT pc.*, PD.*
FROM pg_catalog.pg_description PD right outer join pg_catalog.pg_class PC
on PD.objoid = PC.oid AND PD.objsubid = 0 ) as pde
on info.oid = pde.objoid
where
info.table_schema = 'nomduschema';
Hors ligne
Pages : 1