Re: Finding out table names - Mailing list pgsql-sql

From tjk@tksoft.com
Subject Re: Finding out table names
Date
Msg-id 200004192022.NAA24872@uno.tksoft.com
Whole thread Raw
In response to Finding out table names  (Kristen Nostrand <kdnostr@california.sandia.gov>)
List pgsql-sql
Kristen,

Here's what I use.

SELECT relname FROM pg_class WHERE relkind='r' and relname NOT LIKE 'pg_%' order by relname

Obviously, if you have tables which start with "pg_," then this solution
is not going to work.

I don't know how orthodox this solution is, or whether there are
serious problems with it. Maybe we'll find out now.


Troy





>
> I'm doing some database programming using Java/JDBC.  I'd
> like to know how to find the table names contained in a
> database/schema.  Is there an SQL statement for doing that?
>
> Kristen
>

pgsql-sql by date:

Previous
From: Kristen Nostrand
Date:
Subject: Finding out table names
Next
From: "Tim Johnson"
Date:
Subject: Re: GROUPING and ORDERING and CONFUSION