Oracle中的存储过程使用
一 存储过程的基本应用1创建存储过程(SQL窗口)create or replace procedure update_staffasbegin update staff set name = "xy"; commit;end update_staff;存储过程适合做更新操作,特别是大量数据的更新2 查看存储过程在数据字典中的信息(SQL窗口)select object_name,object_type,status from user_objects w...