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


165

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

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


답변:


173

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)

너무 간단하고 멋지다! 이제 찾은 현재 쿼리를 310 문자 (테이블 이름 없음), 4 테이블 조인, 스키마 인식, 비싸지 않고 'int4'및 기타를 정수 대신 유형으로 제공하는 것으로 바꿀 수 있습니다. 감사합니다!

2
PostgreSQL을 사용하면 여러 스키마에서 동일한 테이블 이름 (동일한 테이블)을 가질 수 있습니다. WHERE 절을 작성하는 강력한 방법은 이러한 가능성을 고려합니다. where table_catalog = ? and table_schema = ? and table_name = ?;그러나이 information_schema보기는 DDL이 도메인 을 사용한 것으로 간주하지 않습니다 .
Mike Sherrill 'Cat

1
그것과 함께 사용할 수있다, 그래서 이것은 당신에게 배열의 형태를 제공하지 않습니다pg_typeof
다리아

146

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

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

테이블의 레코드 당 행을 반환합니다. 수백만 개의 레코드가있는 경우 실행하지 마십시오
Saarang

3
계산 유형을 결정 해야하는 경우 아름답게 작동합니다. 예를 들어, SELECT pg_typeof( date_part( 'year', now() ) ) AS expr아마 당신이 기대하는 것과 다를 것입니다.
레오 오리엔 티스

여기서 영리한 것은 pg_typeof백엔드 테이블이 존재하는 경우 알 수 없거나 명확하지 않은 저장 프로 시저에서 나오는 필드에서 작동 한다는 것 입니다. select state, qstart, pg_typeof(qstart) as ty_qstart from listconn(). information_schema는 여기서별로 도움이되지 않습니다.
JL Peyret

40

이 요청을 시도하십시오 :

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

4
table_name = 'YOUR_TABLE' AND column_name = 'YOUR_FIELD';
haitham

38

실행 psql -E\d student_details


간단하고 유용한
horoyoi o

11

'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

8

정보 스키마 뷰 및 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 | 이넷

4

데이터 유형을 가져올 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 .


1
후세를 들어, pg10 교체 b.relfilenode와 함께b.oid
tswaters
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.