Re: Table size

From: Craig Ringer <craig(at)postnewspapers(dot)com(dot)au>
To: lak <lakindia89(at)gmail(dot)com>
Cc: pgsql-general(at)postgresql(dot)org
Subject: Re: Table size
Date: 2008-03-21 16:27:38
Message-ID: 47E3E1FA.80906@postnewspapers.com.au
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

lak wrote:
> I have two questions.
> How can I enter comments into a table? Where the comments are stored?
>
Assuming you want comments on the table schema definitions, use COMMENT ON.

CREATE TABLE sometable (
-- definition
);

COMMENT ON TABLE sometable IS "This is a table";

If that's not what you're after, you might need to be more specific.

--
Craig Ringer

In response to

Browse pgsql-general by date

  From Date Subject
Next Message Andreas 'ads' Scherbaum 2008-03-21 16:28:58 Re: MySQL to Postgres question
Previous Message Erik Jones 2008-03-21 16:27:16 Re: Table size