2009-02-24 33 views

Trả lời

27
SELECT table_name 
    FROM information_schema.tables 
WHERE table_type = 'BASE TABLE' 
    AND table_schema NOT IN 
     ('pg_catalog', 'information_schema'); 

SELECT column_name 
    FROM information_schema.columns 
WHERE table_name = 'YourTablesName'; 

trang này có một số thông tin tuyệt vời về lấy thông tin từ information_schema: http://www.alberton.info/postgresql_meta_info.html

+1

này không nên quá khó hiểu. Nên có một lệnh: CHỌN COLUMN_NAMES từ 'your_table_name_here' –

+1

Nope @zero_cool. Đó là điều bí ẩn. Xem [this] (https://www.postgresql.org/message-id/[email protected]) – akshaynagpal

4

sử dụng các quan điểm ANSI information_schema

select * from information_schema.tables 

select * from information_schema.columns 
3

Nếu bạn có quyền truy cập vào psql, bạn có thể sử dụng \d\d table. Xét về SQL, đầu tiên là tương đương với

SELECT table_name FROM information_schema.tables WHERE table_schema = 'public' 

thứ hai

SELECT column_name FROM information_schema.columns WHERE table_name ='table' 
40

Công cụ truy vấn cơ sở dữ liệu psql, một phần của bản phân phối PostgreSQL, cung cấp chức năng bảng.

# psql postgres postgres 
psql (9.1.0) 
Type "help" for help. 

postgres=# -- list all tables: 
postgres=# \d 
      List of relations 
Schema | Name | Type | Owner 
--------+-----------+-------+---------- 
public | my_table | table | postgres 
public | my_table2 | table | postgres 
(2 rows) 


postgres=# -- describe table: 
postgres=# \d my_table 
    Table "public.my_table" 
Column | Type | Modifiers 
--------+---------+----------- 
col1 | integer | 
col2 | text | 

Phần còn lại của psql lệnh bạn có thể nhận được với \?:

postgres=# \? 
General 
    \copyright    show PostgreSQL usage and distribution terms 
    \g [FILE] or ;   execute query (and send results to file or |pipe) 
    \h [NAME]    help on syntax of SQL commands, * for all commands 
    \q      quit psql 

Query Buffer 
    \e [FILE] [LINE]  edit the query buffer (or file) with external editor 
    \ef [FUNCNAME [LINE]] edit function definition with external editor 
    \p      show the contents of the query buffer 
    \r      reset (clear) the query buffer 
    \s [FILE]    display history or save it to file 
    \w FILE    write query buffer to file 

Input/Output 
    \copy ...    perform SQL COPY with data stream to the client host 
    \echo [STRING]   write string to standard output 
    \i FILE    execute commands from file 
    \o [FILE]    send all query results to file or |pipe 
    \qecho [STRING]  write string to query output stream (see \o) 

Informational 
    (options: S = show system objects, + = additional detail) 
    \d[S+]     list tables, views, and sequences 
    \d[S+] NAME   describe table, view, sequence, or index 
    \da[S] [PATTERN]  list aggregates 
    \db[+] [PATTERN]  list tablespaces 
    \dc[S] [PATTERN]  list conversions 
    \dC  [PATTERN]  list casts 
    \dd[S] [PATTERN]  show comments on objects 
    \ddp [PATTERN]  list default privileges 
    \dD[S] [PATTERN]  list domains 
    \det[+] [PATTERN]  list foreign tables 
    \des[+] [PATTERN]  list foreign servers 
    \deu[+] [PATTERN]  list user mappings 
    \dew[+] [PATTERN]  list foreign-data wrappers 
    \df[antw][S+] [PATRN] list [only agg/normal/trigger/window] functions 
    \dF[+] [PATTERN]  list text search configurations 
    \dFd[+] [PATTERN]  list text search dictionaries 
    \dFp[+] [PATTERN]  list text search parsers 
    \dFt[+] [PATTERN]  list text search templates 
    \dg[+] [PATTERN]  list roles 
    \di[S+] [PATTERN]  list indexes 
    \dl     list large objects, same as \lo_list 
    \dL[S+] [PATTERN]  list procedural languages 
    \dn[S+] [PATTERN]  list schemas 
    \do[S] [PATTERN]  list operators 
    \dO[S+] [PATTERN]  list collations 
    \dp  [PATTERN]  list table, view, and sequence access privileges 
    \drds [PATRN1 [PATRN2]] list per-database role settings 
    \ds[S+] [PATTERN]  list sequences 
    \dt[S+] [PATTERN]  list tables 
    \dT[S+] [PATTERN]  list data types 
    \du[+] [PATTERN]  list roles 
    \dv[S+] [PATTERN]  list views 
    \dE[S+] [PATTERN]  list foreign tables 
    \dx[+] [PATTERN]  list extensions 
    \l[+]     list all databases 
    \sf[+] FUNCNAME  show a function's definition 
    \z  [PATTERN]  same as \dp 

Formatting 
    \a      toggle between unaligned and aligned output mode 
    \C [STRING]   set table title, or unset if none 
    \f [STRING]   show or set field separator for unaligned query output 
    \H      toggle HTML output mode (currently off) 
    \pset NAME [VALUE]  set table output option 
         (NAME := {format|border|expanded|fieldsep|footer|null| 
         numericlocale|recordsep|tuples_only|title|tableattr|pager}) 
    \t [on|off]   show only rows (currently off) 
    \T [STRING]   set HTML <table> tag attributes, or unset if none 
    \x [on|off]   toggle expanded output (currently off) 

Connection 
    \c[onnect] [DBNAME|- USER|- HOST|- PORT|-] 
         connect to new database (currently "postgres") 
    \encoding [ENCODING] show or set client encoding 
    \password [USERNAME] securely change the password for a user 
    \conninfo    display information about current connection 

Operating System 
    \cd [DIR]    change the current working directory 
    \timing [on|off]  toggle timing of commands (currently off) 
    \! [COMMAND]   execute command in shell or start interactive shell 

Variables 
    \prompt [TEXT] NAME prompt user to set internal variable 
    \set [NAME [VALUE]] set internal variable, or list all if no parameters 
    \unset NAME   unset (delete) internal variable 

Large Objects 
    \lo_export LOBOID FILE 
    \lo_import FILE [COMMENT] 
    \lo_list 
    \lo_unlink LOBOID  large object operations 
+2

Nếu bạn muốn xem toàn bộ cấu trúc cơ sở dữ liệu trong một lần, hãy gõ '\ d *' trong bảng điều khiển 'psql'. Điều đó cung cấp lược đồ của các bảng _all_ trong cơ sở dữ liệu đó. – Devi

5

Tôi biết điều này là 5 năm sau khi các chủ đề đã bắt đầu, nhưng tôi muốn thêm một biến thể nhỏ cho các giải pháp được đề xuất cho đến nay, trong trường hợp nó giúp người khác (cuối cùng, đây là những gì tôi phải đưa ra).

Vấn đề tiềm năng với ở trên, là nếu được thực hiện một cách ngây thơ đối với một cơ sở dữ liệu với hàng trăm bảng và hàng nghìn trường, trước tiên, nhà phát triển có thể truy vấn tập hợp bảng và sau đó truy vấn tất cả các trường cho mỗi bảng . Điều đó búa máy chủ cơ sở dữ liệu. Tôi biết không ai đặc biệt đề nghị sử dụng một vòng lặp, nhưng không ai cảnh báo chống lại nó. Và thẳng thắn, đó là loại tiềm ẩn trong cách các câu trả lời được cấu trúc, trong đó họ có hiệu quả nói "truy vấn đầu tiên tất cả các bảng, truy vấn tiếp theo tất cả các lĩnh vực". Được dịch sang mã, quá trình đó không thể thực sự là bất kỳ thứ gì ngoài vòng lặp.

Cách tốt hơn (IMO) để hoàn thành câu hỏi ban đầu là để chạy một truy vấn như:

SELECT table_schema, table_name, column_name 
    FROM information_schema.columns 
WHERE table_schema in ('a', 'b', 'c', 'd') 

nơi a, b, c, d, ... là các lược đồ với các bảng mà bạn quan tâm đến nói rõ.

Điều này cung cấp cho bạn tập dữ liệu không được chuẩn hóa, nhưng điều đó không thực sự quan trọng vì bạn đang sử dụng nó với ứng dụng - không quan trọng để phân tích kết quả ở lớp ứng dụng theo cách bạn cần và đã chỉ nhấn vào máy chủ cơ sở dữ liệu với một truy vấn siêu nhẹ, thay vì có thể là hàng trăm bên trong một vòng lặp.

Dù sao, hy vọng sẽ giúp ai đó!

0
\d <table_name> 

dụ:

\d authors 
Các vấn đề liên quan