답변:
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)
where table_catalog = ? and table_schema = ? and table_name = ?;
그러나이 information_schema보기는 DDL이 도메인 을 사용한 것으로 간주하지 않습니다 .
pg_typeof
pg_typeof () 함수를 사용하면 임의의 값에도 잘 작동합니다.
SELECT pg_typeof("stu_id"), pg_typeof(100) from student_details limit 1;
SELECT pg_typeof( date_part( 'year', now() ) ) AS expr
아마 당신이 기대하는 것과 다를 것입니다.
pg_typeof
백엔드 테이블이 존재하는 경우 알 수 없거나 명확하지 않은 저장 프로 시저에서 나오는 필드에서 작동 한다는 것 입니다. select state, qstart, pg_typeof(qstart) as ty_qstart from listconn()
. information_schema는 여기서별로 도움이되지 않습니다.
'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
정보 스키마 뷰 및 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
);
데이터 유형 사용 , varchar (n) 열 길이 및 숫자 (p, s) 열의 정밀도 및 스케일 사용 psql
을 \d public.test
올바르게 표시합니다 test_domain
.
sandbox = # \ d public.test "public.test"테이블 열 | 타입 | 수정 자 --------- + ----------------------- + ----------- test_id | test_domain | test_vc | 문자 변화 (15) | test_n | 숫자 (15,3) | big_n | bigint | ip_addr | 이네 |
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 | 데이터 형식 ------------- + ------------------- test_id | 다양한 캐릭터 test_vc | 다양한 캐릭터 test_n | 숫자 big_n | bigint ip_addr | 이넷
당신은 수도 , 또는 직접 시스템 테이블을 조회하여 다른 모든 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 | 다양한 캐릭터 | 숫자 | bigint | 이넷
데이터 유형을 가져올 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
b.relfilenode
와 함께b.oid