摘要:
declare cursor stus_cur is select * from students; --定义游标并且赋值(is 不能和cursor分开使用) cur_stu students%rowtype; --定义rowtype begin open stus_cur; --开启游标 loop 阅读全文
摘要:
trigger是个特殊的存储过程,它的执行不是由程序调用,也不是手工启动,而是由事件来触发,比如当对一个表进行操作(insert,delete,update)时就会激活它执行。触发器经常用于加强数据的完整性约束和业务规则等。 触发器可以从DBA_TRIGGERS,USER_TRIGGERS 数据字典 阅读全文