All thing of the world!

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

IT/Postgresql DBMS

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

WorldSeeker 2021. 4. 22. 11:18

1. 함수의 목적

   

    Postgresql json_to_tsvector 함수는 text_search 기능에 관련된 함수로서, 인수로 입력된 json/jsonb 텍스트를 필터링 조건으로 입력된 인수를 사용하여 필터링 후 정규화하여, tsvector로 변환하여 반환한다. 필터는 키워드 중 0개 이상을 포함하는 jsonb 배열이어야 하며, "string"(모든 문자열 값 포함) , "numeric"(모든 숫자 값 포함), "boolean"(모든 부울 값 포함), "key"(모든 키 포함) 또는 "all"(모든 값 포함)을 사용 가능하다. 


 

2. 샘플을 통한 개념 퀵뷰

 

    SELECT json_to_tsvector('english', '{"a": "The Fat Rats", "b": 123}'::json, '["string", "numeric"]') ;

 

    json_to_tsvector

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

    '123':5 'fat':2 'rat':3

 

3. 사용방법

 

    json_to_tsvector ( [ config regconfig, ] document json, filter jsonb )

    jsonb_to_tsvector ( [ config regconfig, ] document jsonb, filter jsonb )

    

4. 함수 PARAMETER 설명

 

[config regconfig]

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

 

[document json]

tsvector로 변환할 json text를 입력한다.

 

[document jsonb]

tsvector로 변환할 jsonb text를 입력한다.

 

[filter jsonb]

[document json]로 입력된 text 중 filtering할 조건을 입력한다.

 

 

5. 다양한 샘플 표현

 

1) filtering 없이 모두 정규화

 

SELECT plainto_tsquery('simple', 'The Fat Rats');SELECT json_to_tsvector('english', '{"cat": "The Fat Rats", "dog": 123}'::json, '"all"');

 

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

 

Comments