1. 变量格式
<变量名><数据类型>[(长度):=<初始值>];
v_countryname varchar2(50):='中国';
2. 常量格式
<常量名> constant <数据类型>:=<常量值>;
con_day constant integer :='365';