Help for this page

Select Code to Download


  1. or download this
    select schema_name
    from information_schema.schemata
    where schema_name <> 'information_schema' -- exclude 'system' schemata
      and schema_name !~ E'^pg_'              -- exclude more 'system' (pg
    +-specific)
    
  2. or download this
    echo '\dn' | psql