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;
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;