oracle一直提示select后缺少into
DECLAREb_dateVARCHAR2(20);e_dateVARCHAR2(20);BEGINselectsysdateintob_datefromdual;sel...
DECLARE
b_date VARCHAR2(20);
e_date VARCHAR2(20);
BEGIN
select sysdate into b_date from dual;
select sysdate+1 into e_date from dual;
/*下面报错*/
select * from Table_A where time between b_date and e_date;
END;
倒数第二行,一直报错select缺少into。我的想法是,赋值,赋完值引用变量,进行select查数!请各位大侠赐教,谢谢! 展开
b_date VARCHAR2(20);
e_date VARCHAR2(20);
BEGIN
select sysdate into b_date from dual;
select sysdate+1 into e_date from dual;
/*下面报错*/
select * from Table_A where time between b_date and e_date;
END;
倒数第二行,一直报错select缺少into。我的想法是,赋值,赋完值引用变量,进行select查数!请各位大侠赐教,谢谢! 展开
推荐于2017-10-13 · 知道合伙人软件行家
关注
展开全部
PL/SQL语句块里,单独的select语句必须和into语句成对出现。
语法如此
返回结果集 需要用到游标。单独的过程不能是一个查询语句。
即使这样 也报错的 begin select * from tablea ; end;
这样:
as
cursor c_cur is select * from tablea;
begin
open c_cur;
end ;
语法如此
返回结果集 需要用到游标。单独的过程不能是一个查询语句。
即使这样 也报错的 begin select * from tablea ; end;
这样:
as
cursor c_cur is select * from tablea;
begin
open c_cur;
end ;
更多追问追答
追问
主要是我需要显示出来后续的查询结果,能否再具体点?谢谢!
追答
返回结果集 需要用到游标。单独的过程不能是一个查询语句。
cursor c_cur is select * from tablea;
open c_cur;
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询