Oracle Database
익명 PL / SQL 블록
수색…
비고
이름이 지정되지 않았기 때문에 익명 블록은 다른 프로그램 단위에서 참조 할 수 없습니다.
익명 블록의 예
DECLARE
-- declare a variable
message varchar2(20);
BEGIN
-- assign value to variable
message := 'HELLO WORLD';
-- print message to screen
DBMS_OUTPUT.PUT_LINE(message);
END;
/
Modified text is an extract of the original Stack Overflow Documentation
아래 라이선스 CC BY-SA 3.0
와 제휴하지 않음 Stack Overflow