Re: Table size - Mailing list pgsql-general

From Craig Ringer
Subject Re: Table size
Date
Msg-id 47E3E1FA.80906@postnewspapers.com.au
Whole thread Raw
In response to Table size  (lak <lakindia89@gmail.com>)
List 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


pgsql-general by date:

Previous
From: Erik Jones
Date:
Subject: Re: Table size
Next
From: Andreas 'ads' Scherbaum
Date:
Subject: Re: MySQL to Postgres question