首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 数据库 > oracle >

基本语句出错

2014-01-28 
基本语句出错,Declare enddatedate Begin enddate : to_date(20070701, yyyymmdd) select * from xx

基本语句出错,
Declare
enddate  date;
Begin

enddate := to_date('20070701', 'yyyymmdd');

select * from xxx
  where mydate < enddate;
End;


我的问题很简单,只要能在PL/SQL窗口中运行看到结果就行了,声明成变量是因为后面的程序都会依赖于前面的日期变量

------解决方法--------------------------------------------------------
PL/SQL中 不能用
select * from xxx 
  where mydate  < enddate;
如select * into .....
from xxxx 
where mydate  < enddate;


这里我想你可能要需要显示游标

        

热点排行