Re: [GENERAL] Table Comments

2010-09-15 Thread Carlos Mennens
Thank you all for that information. -- Sent via pgsql-general mailing list (pgsql-general@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-general

Re: [GENERAL] Table Comments

2010-09-15 Thread Steve Crawford
On 09/15/2010 08:53 AM, Carlos Mennens wrote: I saw in the documentation for PostgreSQL that I can add 'comments' to table entries when creating columns: http://www.postgresql.org/docs/8.1/static/tutorial-table.html CREATE TABLE weather ( cityvarchar(80), temp_lo i

Re: [GENERAL] Table Comments

2010-09-15 Thread Octavio Alvarez
On Wed, 15 Sep 2010 08:53:16 -0700, Carlos Mennens wrote: CREATE TABLE weather ( temp_lo int, -- low temperature ); I did a search and don't understand in what aspect are the 'comments' relevant / visible? I don't see the comments when I attempt to list / describe the t

Re: [GENERAL] Table Comments

2010-09-15 Thread Bill Moran
In response to Carlos Mennens : > I saw in the documentation for PostgreSQL that I can add 'comments' to > table entries when creating columns: > > http://www.postgresql.org/docs/8.1/static/tutorial-table.html > > CREATE TABLE weather ( > cityvarchar(80), > temp_lo in

[GENERAL] Table Comments

2010-09-15 Thread Carlos Mennens
I saw in the documentation for PostgreSQL that I can add 'comments' to table entries when creating columns: http://www.postgresql.org/docs/8.1/static/tutorial-table.html CREATE TABLE weather ( cityvarchar(80), temp_lo int, -- low temperature temp_hi