Varsha Agarwal wrote:> Hi,> I want to see the list of all the tables in the database. Can anyone > tell me how to do that? I tried show table but thats not working.> -Varha>
select * from pg_tables;
Tom