[postgresql] postgres에서 필드의 데이터 유형을 선택하십시오.

postgres의 테이블에서 특정 필드의 데이터 유형을 어떻게 얻습니까? 예를 들어, 다음 테이블 student_details (stu_id integer, stu_name varchar (30), joined_date timestamp);

필드 이름을 사용하거나 다른 방법으로 특정 필드의 데이터 유형을 가져와야합니다. 가능성이 있습니까?



답변

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)


답변

pg_typeof () 함수를 사용하면 임의의 값에도 잘 작동합니다.

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


답변

이 요청을 시도하십시오 :

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


답변

실행 psql -E\d student_details


답변

‘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

를 기반으로 https://gis.stackexchange.com/a/97834 .