set serveroutput on
declare
h_date date;
e_sal number(6) not null := 10000;
location varchar2(13) := 'Atlanta';
c_comm constant number := 1400;
BEGIN
h_date := sysdate();
dbms_output.put_line(
to_char(h_date, 'YYYY"년" MM"월" DD"일입니다"'));
e_sal := e_sal + c_comm + 10;
END;
/
'Oracle > PL/SQL' 카테고리의 다른 글
15일차 # 2-11: Guidelines for Declaring and Initializing PL/SQL Variables (0) | 2012.04.24 |
---|---|
15일차 # 2-9: 변수 타입 (0) | 2012.04.24 |
15일차 # 2-5: 변수 다루기 (0) | 2012.04.24 |
15일차 # 2-4: 변수 이름 짓기 (식별자) (0) | 2012.04.24 |
15일차 # 2-3: 변수? (0) | 2012.04.24 |