PostgreSQL
 sql >> Database >  >> RDS >> PostgreSQL

come verificare le tabelle definite dall'utente in postgres?

Prova così

 SELECT count(*) as cnt FROM pg_tables t where tableowner=current_user 
and tablename='Tablename'  and schemaname='schemaneme'

if cnt = 0 then (CREATE Table TableName)