| From: | Mike Mascari <mascarm(at)mascari(dot)com> | 
|---|---|
| To: | "'Norman J(dot) Clarke'" <norman(at)combimatrix(dot)com>, "pgsql-general(at)postgresql(dot)org" <pgsql-general(at)postgresql(dot)org> | 
| Subject: | RE: how to see column comments? | 
| Date: | 2001-02-16 03:40:04 | 
| Message-ID: | 01C097A0.3DE95FC0.mascarm@mascari.com | 
| Views: | Whole Thread | Raw Message | Download mbox | Resend email | 
| Thread: | |
| Lists: | pgsql-general | 
Try \d+ test_table.
Hope that helps,
Mike Mascari
mascarm(at)mascari(dot)com
-----Original Message-----
From:	Norman J. Clarke [SMTP:norman(at)combimatrix(dot)com]
Sent:	Thursday, February 15, 2001 8:24 PM
To:	pgsql-general(at)postgresql(dot)org
Subject:	[GENERAL] how to see column comments?
Hello,
I have not been able to get psql to show column comments in version
7.1beta4. Am I doing anything wrong, or is this a bug? A transcript of my
psql session is below.
Norm
------------------------------------------------------------------
norman=# create table test_table (col1 integer);
CREATE
norman=# comment on table test_table is 'this is a table comment';
COMMENT
norman=# \dd test_table
                Object descriptions
    Name    |   Object    |       Description
------------+-------------+-------------------------
 test_table | relation(r) | this is a table comment
(1 row)
 
norman=# comment on column test_table.col1 is 'this is a column comment';
COMMENT
norman=# \dd test_table.col1
     Object descriptions
 Name | Object | Description
------+--------+-------------
(0 rows)
| From | Date | Subject | |
|---|---|---|---|
| Next Message | Christopher Sawtell | 2001-02-16 03:42:43 | Re: how to see column comments? | 
| Previous Message | selkovjr | 2001-02-16 03:23:30 | Re: Re: [ANNOUNCE] Request for speakers at O'Reilly conference |