码迷,mamicode.com
首页 > 其他好文 > 详细

存储过程变量类型定义与表字段一致

时间:2015-07-21 12:17:02      阅读:116      评论:0      收藏:0      [点我收藏+]

标签:

create or replace procedure pro_getchart(chart_id   in number,
                                         start_time in varchar2,

                                         end_time   in varchar2) is
  temp_id dic_chart.chart_id%TYPE;
begin

  select t.chart_id into temp_id  from dic_chart t where t.chart_id =  chart_id;
   
end pro_getchart;

 

存储过程变量类型定义与表字段一致

标签:

原文地址:http://www.cnblogs.com/stono/p/4663906.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!