去掉之后就好了! 2.2 PL/SQL中select 必须使用into 填充变量 highlighter- pgsql SQL错误 [6550] [65000]: ORA-06550: 第2行, 第2列: PLS-00428: 在此SELECT语句中缺少INTO子句 highlighter- pgsql BEGINSELECT*FROMorders; pro_delete_all_order;ROLLBACK;END; 2.3 Oracle存储过程编译错误,但是命令行不提示...
select出来的结果要放到变量中去,select ... into ... from ... where ...
4/1 PLS-00428: 在此 SELECT 语句中缺少 INTO 子句 复制 SQL>create or replace procedure get_news2 as3 aa number;4 begin5 select count(*) into aa from cf_news;6 end;7 / 1. 2. 3. 4. 5. 6. 7. 过程已创建。 复制 SQL>create or replace procedure get_news2 as3 aa number;4 begin...
5 BEGIN 6 OPEN return_cursor FOR 'SELECT ''Hello'' AS a, ''World'' AS B FROM dual';7 return return_cursor;8 END getHelloWorld;9 end pkg_HelloWorld;Package body created.SQL> SELECT pkg_HelloWorld.getHelloWorld FROM dual;GETHELLOWORLD --- CURSOR STATEMENT : 1 CUR...
4/1 PLS-00428: 在此 SELECT 语句中缺少 INTO 子句 SQL> create or replace procedure get_news 2 as 3 aa number; 4 begin 5 select count(*) into aa from cf_news; 6 end; 7 / 过程已创建, 电脑资料 《简单的Oracle存储过程的创建方法》(https://www.)。
as begin select * from cms_sys_role t; end cms_content_creation_Pro; 上面是我写的查询返回一张表的信息,创建之后 打开这个存储过程提示::PLS-00428:在此selec语句中缺少INTO子句 然后是怎么执行这个存储过程,用exec 或者call 都不行??? Oracle数据库存储过程 2012年9月27日 14:21 ...
(1,'zmh');commit;end;/begininsertintotestvalues(2,'qyt');commit;end;/---存储过程中不能直接执行select,如果要执行select,必须跟上into字句beginselect*fromtest;end;/PLS-00428:在此SELECT语句中缺少INTO子句这个地方,我的理解是在存储过程中执行select语句,需要先把数据赋值到事先声明好的变量中,然后通过...
4/3 PLS-00428: 在此 SELECT 语句中缺少 INTO 子句 就是提示你, 缺少 INTO 子句了。 oracle 如何保存col列的格式 是指sqlplus的查询输出格式? 这个没多大用product\12.2.0\dbhome_1\sqlplus\admin 里面有个glogin.sql能改全局设定 但没啥意义 oracle的sqlplus怎样保存修改的数据?
4/3 PLS-00428: 在此 SELECT 语句中缺少 INTO 子句 就是提示你, 缺少 INTO 子句了。 oracle 如何保存col列的格式 是指sqlplus的查询输出格式? 这个没多大用product\12.2.0\dbhome_1\sqlplus\admin 里面有个glogin.sql能改全局设定 但没啥意义 oracle的sqlplus怎样保存修改的数据?
4/1 PLS-00428: 在此 select 语句中缺少 INTO 子句 SQL> create or replace procedure get_news 2 as 3 aa number; 4 begin 5 select count(*) into aa from cf_news; 6 end; 7 / 过程已创建。 SQL> create or replace procedure get_news ...