选择postgres中字段的数据类型

时间:2010-01-27 12:14:19

标签: postgresql

如何从postgres中的表中获取特定字段的数据类型? 例如 我有下表,   student_details(        stu_id整数,        stu_name varchar(30),        joined_date时间戳    );

在此使用字段名称/或任何其他方式,我需要获取特定字段的数据类型。有可能吗?

7 个答案:

答案 0 :(得分:149)

您可以从information_schema获取数据类型(此处引用的是8.4个文档,但这不是新功能):

=# select column_name, data_type from information_schema.columns
-# where table_name = 'config';
    column_name     | data_type 
--------------------+-----------
 id                 | integer
 default_printer_id | integer
 master_host_enable | boolean
(3 rows)

答案 1 :(得分:111)

您可以使用pg_typeof()功能,该功能也适用于任意值。

SELECT pg_typeof("stu_id"), pg_typeof(100) from student_details limit 1;

答案 2 :(得分:31)

运行psql -E然后\d student_details

答案 3 :(得分:23)

尝试此请求:

SELECT column_name, data_type FROM information_schema.columns WHERE 
table_name = 'YOUR_TABLE' AND column_name = 'YOUR_FIELD';

答案 4 :(得分:8)

如果你喜欢Mike Sherrill'解决方案,但不想使用psql,我使用此查询来获取缺少的信息:

select column_name,
case 
    when domain_name is not null then domain_name
    when data_type='character varying' THEN 'varchar('||character_maximum_length||')'
    when data_type='numeric' THEN 'numeric('||numeric_precision||','||numeric_scale||')'
    else data_type
end as myType
from information_schema.columns
where table_name='test'

结果:

column_name |     myType
-------------+-------------------
 test_id     | test_domain
 test_vc     | varchar(15)
 test_n      | numeric(15,3)
 big_n       | bigint
 ip_addr     | inet

答案 5 :(得分:7)

信息架构视图和pg_typeof()返回不完整的类型信息。在这些答案中,psql给出了最精确的类型信息。 (OP可能不需要这样的精确信息,但应该知道这些限制。)

create domain test_domain as varchar(15);

create table test (
  test_id test_domain, 
  test_vc varchar(15), 
  test_n numeric(15, 3), 
  big_n bigint,
  ip_addr inet
);

使用psql\d public.test正确显示数据类型test_domain的使用,varchar(n)列的长度以及数字(p,s)的精度和比例列。

sandbox=# \d public.test
             Table "public.test"
 Column  |         Type          | Modifiers
---------+-----------------------+-----------
 test_id | test_domain           |
 test_vc | character varying(15) |
 test_n  | numeric(15,3)         |
 big_n   | bigint                |
 ip_addr | inet                  |

针对information_schema视图的此查询确实显示test_domain的使用。它也没有报告varchar(n)和数字(p,s)列的细节。

select column_name, data_type 
from information_schema.columns 
where table_catalog = 'sandbox'
  and table_schema = 'public'
  and table_name = 'test';
 column_name |     data_type
-------------+-------------------
 test_id     | character varying
 test_vc     | character varying
 test_n      | numeric
 big_n       | bigint
 ip_addr     | inet

可能可以通过加入其他information_schema视图或直接查询系统表来获取所有信息。 psql -E可能有助于此。

函数pg_typeof()正确显示了test_domain的使用,但没有报告varchar(n)和numeric(p,s)列的详细信息。

select pg_typeof(test_id) as test_id, 
       pg_typeof(test_vc) as test_vc,
       pg_typeof(test_n) as test_n,
       pg_typeof(big_n) as big_n,
       pg_typeof(ip_addr) as ip_addr
from test;
   test_id   |      test_vc      | test_n  | big_n  | ip_addr
-------------+-------------------+---------+--------+---------
 test_domain | character varying | numeric | bigint | inet

答案 6 :(得分:2)

information_schema提取数据类型是可能的,但不方便(需要使用case语句连接多个列)。或者,可以使用format_type内置函数来执行此操作,但它适用于在pg_attribute中可见但在information_schema中不可见的内部类型标识符。实施例

SELECT a.attname as column_name, format_type(a.atttypid, a.atttypmod) AS data_type
FROM pg_attribute a JOIN pg_class b ON a.attrelid = b.relfilenode
WHERE a.attnum > 0 -- hide internal columns
AND NOT a.attisdropped -- hide deleted columns
AND b.oid = 'my_table'::regclass::oid; -- example way to find pg_class entry for a table

基于https://gis.stackexchange.com/a/97834