-
Java中连接数据库查看全部
-
oracle的两种调用方式: 1、exec(execute) sayhelloworld(); 2、begin sayhelloworld(); end; /查看全部
-
存储过程和存储函数的相同点:完成特定功能的程序 存储过程和存储函数的区别:是否用return语句返回值查看全部
-
爆头啊查看全部
-
存储过程和存储函数的区别查看全部
-
创建一个存储过程:语法读音(krat or rp雷s p若cj) create or rplace procedure sayhellworld as begin dbms_output_line('hello word'); end;查看全部
-
1.存储过程和存储函数的区别查看全部
-
存储过程和存储函数是指存储在数据库中供所有用户程序调用的子程序叫存储过程、存储函数。查看全部
-
存储过程和存储函数的相同点:完成特定功能的程序 存储过程和存储函数的区别:是否用return语句返回值查看全部
-
create or replace raiseMoney(emo in (声明输入参数与输出参数) number) as//声明变量 psal emp.sal%type; begin select sal into plsql from emp where empno=eno; update emp set sal=sal+100 where empno=eno; dbms_output.put_line(); end; 一般不在存储过程或者存储函数中commit和rollback查看全部
-
调用存储过程:第一:execute +存储过程名 第二种:begin sayHello(); sayHello(); end;查看全部
-
create or replace procedure sayHello as begin dbms_output.put_line("hello world") end;查看全部
-
什么时候用存储过程/存储函数查看全部
-
in和out参数查看全部
-
java中调用包里面的存储过程查看全部
举报
0/150
提交
取消