正直世界

文章
7
资源
0
加入时间
3年1月8天

存储过程创建语法

存储过程创建语法:       create or replace procedure 存储过程名(param1 in type,param2 out type) as 变量1 类型(值范围);变量2 类型(值范围);Begin    Select count(*) into 变量1 from 表A where列名=param1;    If (判断条件) then