“PostgreSQL Pokaż tabele” Kod odpowiedzi

Uzyskaj wszystkie tabele postgres

SELECT * FROM pg_catalog.pg_tables;
Colorful Centipede

Pokaż tabele PostgreSQL

SELECT *
FROM INFORMATION_SCHEMA.tables
where table_schema = 'public';
Puzzled Penguin

PostgreSQL Jak wyświetlać nazwy tabeli

SELECT table_name
  FROM information_schema.tables
 WHERE table_schema='public'
   AND table_type='BASE TABLE';
Impossible Ibis

Pokaż szczegóły postgres tabeli

postgres=# \d tablename;
experimental

PostgreSQL Pokaż tabele

SELECT *
FROM pg_catalog.pg_tables
WHERE schemaname != 'pg_catalog' AND 
    schemaname != 'information_schema';
Code language: SQL (Structured Query Language) (sql)
Yucky Yak

Odpowiedzi podobne do “PostgreSQL Pokaż tabele”

Pytania podobne do “PostgreSQL Pokaż tabele”

Więcej pokrewnych odpowiedzi na “PostgreSQL Pokaż tabele” w Sql

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu