PL/SQL初级学习笔记

PLSQL的块 Plsql的块分为三种:匿名块、存储过程、函数。 匿名块declare: begin  ………………………. end;   存储过程Procedure: Procedure name is begin …………………… End;   函数function: Function name return datatype is Begin …………………………. End;   声明变量语
相关文章
相关标签/搜索