On Fri, Sep 26, 2003 at 18:12:04 -0500,
"Williams, Quinton L" <QWilliams(at)Central(dot)UH(dot)edu> wrote:
> 1. How do you list the definitions of the tables you have created in a
> database?
> 2. How do you list the users in a database?
Using psql, you can use \d to list tables and \du to list users. \? can
be used to see a list of \ commands. If you want to see the SQL used by
these commands, you can run psql with the -E option.