identify Tables without primary keys - postgres - Mailing list pgsql-general

From akp geek
Subject identify Tables without primary keys - postgres
Date
Msg-id 2024a9fb1001150839x3a0b259djcb3f0e03ccc207fa@mail.gmail.com
Whole thread Raw
Responses Re: identify Tables without primary keys - postgres  (Rodrigo Gonzalez <rjgonzale@estrads.com.ar>)
List pgsql-general
Dear all -
 
             I have the following query to find the tables with primary keys. can you please help me finding the tables without primary key.
 
             select
 distinct x.table_name,
from
 information_schema.constraint_column_usage x,
 pg_constraint b
where
 b.contype='p' and
 x.constraint_name=b.conname
 
Regards
 

pgsql-general by date:

Previous
From: DURAND Benoît
Date:
Subject: Tablespace creation
Next
From: Rodrigo Gonzalez
Date:
Subject: Re: identify Tables without primary keys - postgres