代码之家  ›  专栏  ›  技术社区  ›  Mr. Muskrat

PostgreSQL“描述表”

  •  1616
  • Mr. Muskrat  · 技术社区  · 16 年前

    如何执行与Oracle相同的 DESCRIBE TABLE 在PostgreSQL中(使用psql命令)?

    19 回复  |  直到 6 年前
        1
  •  2497
  •   IMSoP    9 年前

    试试这个(在 psql 命令行工具):

    \d+ tablename
    

    the manual 更多信息。

        2
  •  627
  •   Community rcollyer    7 年前

    除了PostgreSQL方式(\d“something”或\dt“table”或\ds“sequence”等)

    SQL标准方法,如图所示 here :

    select column_name, data_type, character_maximum_length
    from INFORMATION_SCHEMA.COLUMNS where table_name = '<name of table>';
    

    它由许多数据库引擎支持。

        3
  •  58
  •   Richard Neish    12 年前

    如果您想从查询而不是psql获得它,那么可以查询目录模式。下面是一个复杂的查询,它可以做到:

    SELECT  
        f.attnum AS number,  
        f.attname AS name,  
        f.attnum,  
        f.attnotnull AS notnull,  
        pg_catalog.format_type(f.atttypid,f.atttypmod) AS type,  
        CASE  
            WHEN p.contype = 'p' THEN 't'  
            ELSE 'f'  
        END AS primarykey,  
        CASE  
            WHEN p.contype = 'u' THEN 't'  
            ELSE 'f'
        END AS uniquekey,
        CASE
            WHEN p.contype = 'f' THEN g.relname
        END AS foreignkey,
        CASE
            WHEN p.contype = 'f' THEN p.confkey
        END AS foreignkey_fieldnum,
        CASE
            WHEN p.contype = 'f' THEN g.relname
        END AS foreignkey,
        CASE
            WHEN p.contype = 'f' THEN p.conkey
        END AS foreignkey_connnum,
        CASE
            WHEN f.atthasdef = 't' THEN d.adsrc
        END AS default
    FROM pg_attribute f  
        JOIN pg_class c ON c.oid = f.attrelid  
        JOIN pg_type t ON t.oid = f.atttypid  
        LEFT JOIN pg_attrdef d ON d.adrelid = c.oid AND d.adnum = f.attnum  
        LEFT JOIN pg_namespace n ON n.oid = c.relnamespace  
        LEFT JOIN pg_constraint p ON p.conrelid = c.oid AND f.attnum = ANY (p.conkey)  
        LEFT JOIN pg_class AS g ON p.confrelid = g.oid  
    WHERE c.relkind = 'r'::char  
        AND n.nspname = '%s'  -- Replace with Schema name  
        AND c.relname = '%s'  -- Replace with table name  
        AND f.attnum > 0 ORDER BY number
    ;
    

    它相当复杂,但它确实向您展示了PostgreSQL系统目录的功能和灵活性,并且应该可以让您进入pg_catalog mastery;-)。请确保更改查询中的%s。第一个是模式,第二个是表名。

        4
  •  46
  •   wvdz    9 年前

    您可以使用psql斜杠命令执行此操作:

     \d myTable describe table
    

    它也适用于其他对象:

     \d myView describe view
     \d myIndex describe index
     \d mySequence describe sequence
    

    来源: faqs.org

        5
  •  32
  •   Daniel Serodio    10 年前

    psql等价于 DESCRIBE TABLE \d table .

    有关更多详细信息,请参阅PostgreSQL手册的psql部分。

        6
  •  20
  •   tshepang Arrie    10 年前

    你可以做一个 \d *search pattern * 星号 查找与您感兴趣的搜索模式匹配的表。

        7
  •  12
  •   roadrunner66    8 年前

    除了命令行 \d+ <table_name> 你已经找到了,你也可以使用 information-schema 要查找列数据,请使用 info_schema.columns

    SELECT *
    FROM info_schema.columns
    WHERE table_schema = 'your_schema'
    AND table_name   = 'your_table'
    
        8
  •  12
  •   Daniel L. VanDenBosch Harry S    7 年前

    您可以使用:

    SELECT attname 
    FROM pg_attribute,pg_class 
    WHERE attrelid=pg_class.oid 
    AND relname='TableName' 
    AND attstattarget <>0; 
    
        9
  •  10
  •   Daniel L. VanDenBosch Harry S    7 年前

    使用以下SQL语句

    SELECT DATA_TYPE 
    FROM INFORMATION_SCHEMA.COLUMNS 
    WHERE table_name = 'tbl_name' 
    AND COLUMN_NAME = 'col_name'
    

    如果替换tbl_name和col_name,它将显示要查找的特定column的数据类型。

        10
  •  7
  •   codeUrDream    6 年前

    这个问题的变化(如其他答案中所解释的)对我很有效。

    SELECT
     COLUMN_NAME
    FROM
     information_schema.COLUMNS
    WHERE
     TABLE_NAME = 'city';
    

    具体描述如下: http://www.postgresqltutorial.com/postgresql-describe-table/

        11
  •  5
  •   MisterJoyson    6 年前

    MySQL ,描述表名


    波斯特雷斯尔 \d表名


    或者,您可以使用这个长命令:

    SELECT
            a.attname AS Field,
            t.typname || '(' || a.atttypmod || ')' AS Type,
            CASE WHEN a.attnotnull = 't' THEN 'YES' ELSE 'NO' END AS Null,
            CASE WHEN r.contype = 'p' THEN 'PRI' ELSE '' END AS Key,
            (SELECT substring(pg_catalog.pg_get_expr(d.adbin, d.adrelid), '\'(.*)\'')
                    FROM
                            pg_catalog.pg_attrdef d
                    WHERE
                            d.adrelid = a.attrelid
                            AND d.adnum = a.attnum
                            AND a.atthasdef) AS Default,
            '' as Extras
    FROM
            pg_class c 
            JOIN pg_attribute a ON a.attrelid = c.oid
            JOIN pg_type t ON a.atttypid = t.oid
            LEFT JOIN pg_catalog.pg_constraint r ON c.oid = r.conrelid 
                    AND r.conname = a.attname
    WHERE
            c.relname = 'tablename'
            AND a.attnum > 0
    
    ORDER BY a.attnum
    
        12
  •  4
  •   Guardian    7 年前

    描述表的最佳方法,如列、类型、列的修饰符等。

    \d+ tablename or \d tablename
    
        13
  •  3
  •   Tajinder    8 年前

    您也可以使用下面的查询进行检查

    Select * from schema_name.table_name limit 0;
    

    expmple:我的表有两列名称和pwd。下面是截图。

    Adding image

    *使用pg admin3

        14
  •  2
  •   Usman Yaqoob    7 年前
    Use this command 
    
    \d table name
    
    like 
    
    \d queuerecords
    
                 Table "public.queuerecords"
      Column   |            Type             | Modifiers
    -----------+-----------------------------+-----------
     id        | uuid                        | not null
     endtime   | timestamp without time zone |
     payload   | text                        |
     queueid   | text                        |
     starttime | timestamp without time zone |
     status    | text                        |
    
        15
  •  2
  •   meenal    6 年前
    In postgres \d is used to describe the table structure.
    e.g. \d schema_name.table_name;
    this command will provide you the basic info of table such as, columns, type and modifiers.
    
    If you want more info about table use
    \d+ schema_name.table_name;
    this will give you extra info such as, storage, stats target and description
    
        16
  •  2
  •   Howard Elton    6 年前

    改进另一个答案的SQL查询(这太好了!),这里是一个修改过的查询。它还包括约束名、继承信息和分解为其组成部分的数据类型(类型、长度、精度、比例)。它还过滤掉已删除(仍存在于数据库中)的列。

    SELECT
        n.nspname as schema,
        c.relname as table,
        f.attname as column,  
        f.attnum as column_id,  
        f.attnotnull as not_null,
        f.attislocal not_inherited,
        f.attinhcount inheritance_count,
        pg_catalog.format_type(f.atttypid,f.atttypmod) AS data_type_full,
        t.typname AS data_type_name,
        CASE  
            WHEN f.atttypmod >= 0 AND t.typname <> 'numeric'THEN (f.atttypmod - 4) --first 4 bytes are for storing actual length of data
        END AS data_type_length, 
        CASE  
            WHEN t.typname = 'numeric' THEN (((f.atttypmod - 4) >> 16) & 65535)
        END AS numeric_precision,   
        CASE  
            WHEN t.typname = 'numeric' THEN ((f.atttypmod - 4)& 65535 )
        END AS numeric_scale,       
        CASE  
            WHEN p.contype = 'p' THEN 't'  
            ELSE 'f'  
        END AS is_primary_key,  
        CASE
            WHEN p.contype = 'p' THEN p.conname
        END AS primary_key_name,
        CASE  
            WHEN p.contype = 'u' THEN 't'  
            ELSE 'f'
        END AS is_unique_key,
        CASE
            WHEN p.contype = 'u' THEN p.conname
        END AS unique_key_name,
        CASE
            WHEN p.contype = 'f' THEN 't'
            ELSE 'f'
        END AS is_foreign_key,
        CASE
            WHEN p.contype = 'f' THEN p.conname
        END AS foreignkey_name,
        CASE
            WHEN p.contype = 'f' THEN p.confkey
        END AS foreign_key_columnid,
        CASE
            WHEN p.contype = 'f' THEN g.relname
        END AS foreign_key_table,
        CASE
            WHEN p.contype = 'f' THEN p.conkey
        END AS foreign_key_local_column_id,
        CASE
            WHEN f.atthasdef = 't' THEN d.adsrc
        END AS default_value
    FROM pg_attribute f  
        JOIN pg_class c ON c.oid = f.attrelid  
        JOIN pg_type t ON t.oid = f.atttypid  
        LEFT JOIN pg_attrdef d ON d.adrelid = c.oid AND d.adnum = f.attnum  
        LEFT JOIN pg_namespace n ON n.oid = c.relnamespace  
        LEFT JOIN pg_constraint p ON p.conrelid = c.oid AND f.attnum = ANY (p.conkey)  
        LEFT JOIN pg_class AS g ON p.confrelid = g.oid  
    WHERE c.relkind = 'r'::char  
        AND f.attisdropped = false
        AND n.nspname = '%s'  -- Replace with Schema name  
        AND c.relname = '%s'  -- Replace with table name  
        AND f.attnum > 0 
    ORDER BY f.attnum
    ;
    
        17
  •  0
  •   Ivan Kaloyanov HassanRezai    6 年前

    这应该是解决方案:

    SELECT * FROM information_schema.columns
    WHERE table_schema = 'your_schema'
       AND table_name   = 'your_table'
    
        18
  •  -1
  •   Pavan Teja    7 年前

    /dt是列出数据库中所有表的命令。使用
    /d命令和/d+我们可以得到表的详细信息。Syntax将像
    */d表\u名称(或\d+表\u名称

        19
  •  -4
  •   paulg    6 年前

    我为GET表模式编写了以下脚本。

    'CREATE TABLE ' || 'yourschema.yourtable' || E'\n(\n' ||
    array_to_string(
    array_agg(
    '    ' || column_expr
    )
    , E',\n'
    ) || E'\n);\n'
    from
    (
    SELECT '    ' || column_name || ' ' || data_type || 
    coalesce('(' || character_maximum_length || ')', '') || 
    case when is_nullable = 'YES' then ' NULL' else ' NOT NULL' end as column_expr
    FROM information_schema.columns
    WHERE table_schema || '.' || table_name = 'yourschema.yourtable'
    ORDER BY ordinal_position
    ) column_list;