linux shell使用loop和cursor批量修改sql
USER="zhangsan"PWD="123456"DBNAME="JTP"sqlplus ${USER}/${PWD}@${DBNAME}<<EOFdeclare #定义游标并赋值cursor 与is一起使用 cursor stu_cur is select * from tbstudents; #定义类型rowtype,stu_row用户获取表字段值 stu