달나라 노트

Redshift : procedure if syntax (procedure에서의 if 구문) 본문

SQL/Redshift

Redshift : procedure if syntax (procedure에서의 if 구문)

CosmosProject 2025. 3. 15. 13:58
728x90
반응형

 

 

 

procedure 내부에서 if syntax를 사용할 수 있습니다.

 

create or replace procedure schema.procedure_name(
    f1    in bigint,
    f2    in float,
    f3    in varchar
)
language plpgsql
as $$
    begin
        if f1 is null or v2 is null then
            raise exception 'parameter cannot be null';
        elseif f1 > 10 then
            raise notice 'f1 is greater than 10';
        else
            raise notice 'f2 = %', f2;
        end if;
    end;
$$
;

 

예시를 보면 위처럼 if 구문을 사용할 수 있습니다.

이 과정에서 parameter를 이용하여 다양한 것을 할 수 있습니다.

 

참고로 raise exception (message) syntax는 명시된 메세지와 함께 error를 발생시켜 procedure를 중단시킵니다.

 

 

출처

https://docs.aws.amazon.com/ko_kr/redshift/latest/dg/c_PLpgSQL-statements.html

 

지원되는 PL/pgSQL 문 - Amazon Redshift

지원되는 PL/pgSQL 문 PL/pgSQL 문은 루프 및 조건 표현식을 비롯한 프로시저 구문으로 SQL 명령을 보완하여 논리 흐름을 제어합니다. COPY, UNLOAD, INSERT 등의 데이터 조작 언어(DML)와 CREATE TABLE 등의 데이

docs.aws.amazon.com

 

 

 

 

 

 

728x90
반응형
Comments