All thing of the world!

Postgresql to_tsvector 설명 : 포스트그레스큐엘 함수 본문

IT/Postgresql DBMS

Postgresql to_tsvector 설명 : 포스트그레스큐엘 함수

WorldSeeker 2021. 4. 22. 10:46

1. 함수의 목적

   

    Postgresql to_tsvector 함수는 text_search 기능에 관련된 함수로서, 인수로 입력된 일반 텍스트를 단어를 정규화(불용어 제외, 소문자변환 등)하여 tsvector 형식으로 반환한다.


 

2. 샘플을 통한 개념 퀵뷰

 

    SELECT to_tsvector('english', 'The Fat Rats')  ;

 

    to_tsvector

    ----------------------

    'fat':2 'rat':3

 

3. 사용방법

 

    to_tsvector ( [ config regconfig, ] document text ) 

    to_tsvector ( [ config regconfig, ] document json )

    to_tsvector ( [ config regconfig, ] document jsonb ) 

    

4. 함수 PARAMETER 설명

 

[config regconfig]

사용할 설정을 입력한다. 생략시 기본 설정이 사용된다.

 

[document text]

정규화할 text를 입력한다.

 

[document json]

정규화할 json을 입력한다.

 

[document text]

정규화할 jsonb를 입력한다.

 

 

 

5. 다양한 샘플 표현

 

1) json 형식의 text를 tsvector로 변환

 

SELECT to_tsvector('english', '{"aa": "The Fat Rats", "b": "dog"}'::json) ;

 

    to_tsvector

    ----------------------

    'dog':5 'fat':2 'rat':3

 

2) jsonb 형식의 text를 tsvector로 변환

 

SELECT to_tsvector('english', '{"aa": "The Fat Rats", "b": "dog"}'::jsonb) ;

 

    to_tsvector

    ----------------------

    'dog':1 'fat':4 'rat':5

 

 

 Posgresql 내장함수 모음 : atotw.tistory.com/category/IT/Postgresql%20DBMS

 

Comments