일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
- 공개서적
- bard 100% 신뢰금지
- Google vs MicorSoft
- 나는 어디로?
- 데이터 리터러시
- 가장 많이 사용되는 파이썬 패키지
- 가장 인기있는 파이썬 라이브러리
- Google vs OpenAI
- 종합소득세
- 파이썬 TypeError
- Python
- 다주택임대
- 2룸 오피스텔 투자
- chatgpt 100% 신뢰금지
- 주상복합용지 분양
- 임대소득외 추가소득이 있을 경우
- 상업시설용지 분양
- 라이브러리 vs 패키지
- 오라클 데이터베이스 내장함수
- 가장 인기있는 파이썬 패키지
- chatgpt vs bard
- PostgreSQL
- 소형주택 세액감면
- 오피스텔투자
- 주택임대사업자
- 종합과세
- 전세보증보험
- 갤럭시탭 with Pen
- 가장 많이 사용되는 파이썬 라이브러리
- robux
All thing of the world!
Postgresql ts_rank_cd 설명 : 포스트그레스큐엘 함수 본문
1. 함수의 목적
Postgresql ts_rank_cd 함수는 text_search 기능에 관련된 함수로서, 인수로 주어진 검색어와 tsvector가 커버 밀도 알고리즘(cover density algorithm)을 사용하여 얼마나 잘 매칭되는지 real 형식의 데이터로 반환한다.
2. 샘플을 통한 개념 퀵뷰
SELECT ts_rank_cd(to_tsvector('raining cats and dogs'), 'cat');
ts_rank_cd
----------------------
0.1
3. 사용방법
ts_rank_cd ( [ weights real[], ] vector tsvector, query tsquery [, normalization integer ] )
4. 함수 PARAMETER 설명
[weights real[]] - 선택적 인수
가중치를 real로 입력한다. 배열 형식으로 아래와 같이 입력가능하다.
{word-weight, word-weight, word-weight}
[vector tsvector]
tsvector를 입력한다.
[query tsquery]
검색어를 tsquery로 입력한다.
[normalization integer] : 선택적 인수
다큐먼트 길이가 rank에 주는 영향도를 조절하며 아래의 숫자 중 선택적으로 입력한다.
- 0 (the default) ignores the document length
- 1 divides the rank by 1 + the logarithm of the document length
- 2 divides the rank by the document length
- 4 divides the rank by the mean harmonic distance between extents (this is implemented only by ts_rank_cd)
- 8 divides the rank by the number of unique words in document
- 16 divides the rank by 1 + the logarithm of the number of unique words in document
- 32 divides the rank by itself + 1
5. 다양한 샘플 표현
▶▶ Posgresql 내장함수 모음 : atotw.tistory.com/category/IT/Postgresql%20DBMS
'IT > Postgresql DBMS' 카테고리의 다른 글
Postgresql tsvector_to_array 설명 : 포스트그레스큐엘 함수 (0) | 2021.04.25 |
---|---|
Postgresql ts_rewrite 설명 : 포스트그레스큐엘 함수 (0) | 2021.04.23 |
Postgresql ts_rank 설명 : 포스트그레스큐엘 함수 (0) | 2021.04.22 |
Postgresql ts_headline 설명 : 포스트그레스큐엘 함수 (0) | 2021.04.22 |
Postgresql ts_delete 설명 : 포스트그레스큐엘 함수 (0) | 2021.04.22 |