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