All thing of the world!

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

IT/Postgresql DBMS

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

WorldSeeker 2021. 4. 22. 08:52

1. 함수의 목적

   

    Postgresql setweight 함수는 text_search 기능에 관련된 함수로서, 인수로 입력된 tsvector의 각 요소에 지정된 가중치를 할당한 tsvector를 반환한다.


 

2. 샘플을 통한 개념 퀵뷰

 

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

 

    setweight

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

    'cat':3A 'fat':2A,4A 'rat':5A

 

3. 사용방법

 

    setweight ( vector tsvector, weight "char" )

    

4. 함수 PARAMETER 설명

 

[vector tsvector]

tsvector를 입력한다. 

 

[weight "char"]

문자형 가중치를 입력한다.

 

 

5. 다양한 샘플 표현

 

 

 

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

 

Comments