All thing of the world!

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

IT/Postgresql DBMS

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

WorldSeeker 2021. 4. 19. 13:22

1. 함수의 목적

   

    Postgresql repeat 함수는 인수로 주어진 문자열을, 인수로 주어진 만큼 반복한 문자열로 만들어 반환한다.


 

2. 샘플을 통한 개념 퀵뷰

 

    SELECT repeat('Pg', 4);

 

    repeat

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

    PgPgPgPg

 

3. 사용방법

 

    repeat ( string text, number integer ) 

    

4. 함수 PARAMETER 설명

 

[string text]

반복할 문자열을 입력한다.

 

[number integer]

반복할 횟수를 integer로 입력한다.

 

 

5. 다양한 샘플 표현

 

 

 

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

 

Comments