All thing of the world!

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

IT/Postgresql DBMS

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

WorldSeeker 2021. 4. 22. 08:10

1. 함수의 목적

   

    Postgresql array_to_tsvector 함수는 text_search 기능에 관련된 함수로서, 문자열 배열을 tsvector로 변환하여 반환한다.


 

2. 샘플을 통한 개념 퀵뷰

 

    SELECT array_to_tsvector('{fat,cat,rat}'::text[]);

 

    array_to_tsvector

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

    'cat' 'fat' 'rat'

 

3. 사용방법

 

    array_to_tsvector ( text[] ) 

    

4. 함수 PARAMETER 설명

 

[text[]]

tsvector로 변환할 문자열 배열을 입력한다.

 

 

5. 다양한 샘플 표현

 

 

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

 

Comments