我如何从postgres表中获得特定字段的数据类型? 例如 我有下面的表格, student_details ( stu_id整数, Stu_name varchar(30), joined_date时间戳 );
在此使用字段名/或任何其他方式,我需要获得特定字段的数据类型。有可能吗?
我如何从postgres表中获得特定字段的数据类型? 例如 我有下面的表格, student_details ( stu_id整数, Stu_name varchar(30), joined_date时间戳 );
在此使用字段名/或任何其他方式,我需要获得特定字段的数据类型。有可能吗?
当前回答
从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。
其他回答
从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。
信息模式视图和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
可以使用pg_typeof()函数,该函数也适用于任意值。
SELECT pg_typeof("stu_id"), pg_typeof(100) from student_details limit 1;
如果你喜欢“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
执行psql -E,然后执行\d student_details