All thing of the world!

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

IT/Postgresql DBMS

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

WorldSeeker 2021. 4. 22. 11:30

1. 함수의 목적

   

    Postgresql ts_delete 함수는 text_search 기능에 관련된 함수로서, 인수로 입력된 tsvector 중 인수로 입력된 삭제 어휘(lexeme)을 제거하여 tsvector 형식으로 반환한다.


 

2. 샘플을 통한 개념 퀵뷰

 

    SELECT ts_delete('fat:2,4 cat:3 rat:5A'::tsvector, 'fat') ;

 

    ts_delete

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

    'cat':3 'rat':5A

 

3. 사용방법

 

    ts_delete ( vector tsvector, lexeme text ) 

    ts_delete ( vector tsvector, lexemes text[] ) 

    

4. 함수 PARAMETER 설명

 

[vector tsvector]

tsvector을 입력한다.

 

[lexeme text]

제거할 어휘를 텍스트로 입력한다.

 

[lexeme text[]]

제거할 어휘를 텍스트 배열로 입력한다.

 

 

5. 다양한 샘플 표현

 

1) 제거할 어휘를 배열로 지정

 

SELECT ts_filter('fat:2,4 cat:3b,7c rat:5A'::tsvector, '{a,b}');

 

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

 

Comments