2009-02-24 12 views
24

मुझे एक ऐसी स्क्रिप्ट लिखनी है जो PostgreSQL डेटाबेस से डेटा आउटपुट करेगी जिसे मैं संरचना नहीं जानता। डेटाबेस में सभी तालिकाओं के नाम क्या प्रश्न वापस कर देंगे? और तालिका में सभी स्तंभों के नामों की सूची कौन सी क्वेरी सूचीबद्ध करेगी?मैं PostgreSQL डेटाबेस की संरचना कैसे खोजूं?

उत्तर

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'; 

यह पृष्ठ INFORMATION_SCHEMA से जानकारी प्राप्त करने पर कुछ महान जानकारी है के बराबर है। phpPgAdmin का उपयोग करें - यह बहुत आसान, तेज और कम त्रुटि प्रवण होगा।

+1

यह बहुत गुप्त नहीं होना चाहिए। एक आदेश होना चाहिए: 'your_table_name_here' से COLUMN_NAMES चुनें –

+1

नोप @zero_cool। यह गूढ़ है। [यह] देखें (https://www.postgresql.org/message-id/[email protected]) – akshaynagpal

4

एएनएसआई INFORMATION_SCHEMA दृश्यों का उपयोग

select * from information_schema.tables 

select * from information_schema.columns 
-2

Don't write it yourself: एसक्यूएल के संदर्भ में, पहले

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

दूसरा

SELECT column_name FROM information_schema.columns WHERE table_name ='table' 
+0

PHP हमेशा उपलब्ध नहीं है। –

40

डेटाबेस क्वेरी उपकरण psql, PostgreSQL वितरण का हिस्सा है, तालिका वर्णन सुविधा प्रदान करता है।

# 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 | 

psql आदेश आप \? साथ प्राप्त कर सकते हैं के बाकी:

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

यदि आप एक ही बार में संपूर्ण डेटाबेस संरचना देखना चाहते हैं, तो 'psql' कंसोल में' \ d * 'टाइप करें। यह उस डेटाबेस में _all_ तालिकाओं की स्कीमा देता है। – Devi

5

मैं जानता हूँ कि यह 5 साल के बाद धागा शुरू किया गया था, लेकिन मैं जोड़ना चाहते हैं अब तक प्रस्तावित समाधानों में मामूली बदलाव, अगर यह किसी और की मदद करता है (आखिरकार, यही वह है जिसके साथ मुझे आना पड़ा)।

उपरोक्त के साथ संभावित समस्या यह है कि यदि सैकड़ों तालिकाओं और हजारों फ़ील्ड वाले डेटाबेस के खिलाफ नैतिक रूप से लागू किया गया है, तो डेवलपर पहले टेबल के सेट से पूछताछ कर सकता है, और उसके बाद एक लूप के अंदर, प्रत्येक तालिका के लिए सभी फ़ील्ड पूछताछ कर सकता है । वह डेटाबेस सर्वर हथौड़ा है। मुझे पता है कि किसी ने विशेष रूप से लूप का उपयोग करने का सुझाव नहीं दिया है, लेकिन किसी ने भी इसके खिलाफ चेतावनी नहीं दी है। और स्पष्ट रूप से, यह उत्तर के तरीके के रूप में अंतर्निहित है, जिसमें वे प्रभावी ढंग से कहते हैं "पहले सभी टेबलों को पूछताछ करें, सभी क्षेत्रों को अगली क्वेरी करें"। कोड में अनुवादित, यह प्रक्रिया वास्तव में एक लूप के अलावा कुछ भी नहीं हो सकती है।

एक बेहतर तरीका (IMO) मूल प्रश्न पूरा करने के लिए की तरह एक क्वेरी चलाने के लिए है:

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

जहां ए, बी, सी, डी, ... टेबल है कि आप के लिए महत्वपूर्ण हैं, उनसे कर रहे हैं स्कीमा स्पष्ट, गाँठदार।

यह आपको एक डेटासेट प्रदान करता है जो सामान्य नहीं है, लेकिन इससे कोई फर्क नहीं पड़ता क्योंकि आप इसे किसी ऐप से उपभोग कर रहे हैं - ऐप लेयर के परिणाम को आप जिस तरीके से चाहते हैं, उसे पार्स करने के लिए तुच्छ है, और आप एक लूप के अंदर संभवतः सैकड़ों की जगह, एक सुपर लाइटवेट क्वेरी के साथ डेटाबेस सर्वर को केवल हिट किया है।

वैसे भी, उम्मीद है कि किसी की मदद करता है!

0
\d <table_name> 

उदाहरण:

\d authors 
संबंधित मुद्दे