반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- PostgreSQL
- google apps script
- 파이썬
- matplotlib
- SQL
- list
- django
- array
- string
- Github
- hive
- gas
- PySpark
- dataframe
- Excel
- Google Excel
- numpy
- Google Spreadsheet
- Python
- Redshift
- Apache
- c#
- Mac
- PANDAS
- Kotlin
- math
- Tkinter
- GIT
- Java
Archives
- Today
- Total
달나라 노트
Redshift : procedure if syntax (procedure에서의 if 구문) 본문
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
반응형
'SQL > Redshift' 카테고리의 다른 글
Redshift : procedure에서 query 돌리기 (0) | 2025.03.15 |
---|---|
Redshift : procedure for loop (procedure에서의 for loop 구문) (0) | 2025.03.15 |
Redshift : drop procedure (procedure 삭제) (0) | 2025.03.15 |
Redshift : create procedure, call procedure (procedure의 선언과 호출) (0) | 2025.03.15 |
Redshift : Week truncate (주차별로 truncate하기, 일요일 시작 주차 truncate) (0) | 2024.07.25 |
Comments