Re: Table size

Поиск
Список
Период
Сортировка
От Craig Ringer
Тема Re: Table size
Дата
Msg-id 47E3E1FA.80906@postnewspapers.com.au
обсуждение исходный текст
Ответ на Table size  (lak <lakindia89@gmail.com>)
Список 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 по дате отправления:

Предыдущее
От: Erik Jones
Дата:
Сообщение: Re: Table size
Следующее
От: Andreas 'ads' Scherbaum
Дата:
Сообщение: Re: MySQL to Postgres question