2008-07-02
存储过程经验积累2:各种变量定义
关键字: 数据库
1.常用类型:
number 数字型(包括小数) char(n) varchar2(n) 字符型
boolean 布尔型
2.定义与表相关:
tableA.columnA%type; 字段类型相同
tableA%rowtype;
3.包头部分定义:
定义集合
TYPE dt_deduct_fund is RECORD(
invest_id t_contract_invest.invest_id%TYPE,
fund_type t_contract_invest.fund_type%type,
fund_code t_fund.fund_code%TYPE,
money_id t_money.money_id%TYPE);
定义多条集合
TYPE dt_deduct_fund_list is TABLE OF dt_deduct_fund INDEX BY BINARY_INTEGER;
number 数字型(包括小数) char(n) varchar2(n) 字符型
boolean 布尔型
2.定义与表相关:
tableA.columnA%type; 字段类型相同
tableA%rowtype;
3.包头部分定义:
定义集合
TYPE dt_deduct_fund is RECORD(
invest_id t_contract_invest.invest_id%TYPE,
fund_type t_contract_invest.fund_type%type,
fund_code t_fund.fund_code%TYPE,
money_id t_money.money_id%TYPE);
定义多条集合
TYPE dt_deduct_fund_list is TABLE OF dt_deduct_fund INDEX BY BINARY_INTEGER;
发表评论
最近加入圈子
最新评论
-
早上面试,遭受打击,心情 ...
呵呵。下次不要迟到就好。 今天面试去的比较晚,没有迟到,但是还是被bs了一下 郁 ...
-- by dragonshrimp -
早上面试,遭受打击,心情 ...
换掉湿衣服.换个好心情再出发
-- by huxp -
早上面试,遭受打击,心情 ...
说说看, 哪个公司
-- by mailscheng -
早上面试,遭受打击,心情 ...
^_^ 多谢大家关心, 我昨天下午和今天上午的面试都还不错, 不过都是小公司, ...
-- by eboge -
早上面试,遭受打击,心情 ...
hurricane1026 写道lordhong 写道迟到10分钟还可以啦... ...
-- by glamey







评论排行榜