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

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


当前回答

试试这个请求:

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

其他回答

信息模式视图和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)列和numeric(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

你可以从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)

试试这个请求:

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

执行psql -E,然后执行\d student_details

https://www.postgresql.org/docs/current/app-psql.html#APP-PSQL-PATTERNS

\gdesc显示描述(即列名和数据) 类型)当前查询缓冲区的结果。查询不是 实际执行;但是,如果它包含某种类型的语法错误, 该错误将以正常方式报告。 如果当前查询缓冲区为空,则最近发送的查询为 描述。

所以你可以table student_details limit 0 \gdesc 输出占用的空间小于\d