oracle 关于在某个时间段内要查询的数据

oracle数据库中 文章信息表(文章ID,标题,内容,作者,发布的时间)我想查询在某个时间段内发布的文章 怎么建立存储过程以及调用 麻烦写的具体点 3Q

create or replace procedure pro_time(starttime in varchar2,endtime in varchar2) is
begin
declare
v_starttime date;
v_endtime date;
begin
v_starttime := to_date(starttime, 'yyyy-mm-dd hh24:mi:ss');
v_endtime := to_date(endtime, 'yyyy-mm-dd hh24:mi:ss');
dbms_output.put_line(
select *
from table
where 发布的时间 between v_starttime and v_endtime);
end;
end pro_time;
调用过程
sql>set serveroutput on
sql>execute pro_time(2011-12-4 17:42:47,2011-12-4 18:00:00)
第一个时间是时间段起期,第二个时间是时间段止期
温馨提示:内容为网友见解,仅供参考
第1个回答  2011-12-03
直接一段sql运行就行了。。。
select * from 文章信息表 where 发布的时间 between 时间段起期 and 时间段止期

38679386(Oracle学习)QQ群,欢迎大家一起来学习Oracle。
相似回答
大家正在搜