摘要: 3:使用显式游标,根据员工工资(sal)参数,查询员工表emp中工资大于等于该参数的员工信息,显示内容包括员工编码(empno),姓名(ename),工资(sal).用游标FOR循环来做。declare cursor cursor_emp(inputsal number) is select empno,ename,sal from emp where sal>inputsal; empno... 阅读全文
posted @ 2010-11-25 11:15 Hugh·Hu 阅读(339) 评论(0) 推荐(0) 编辑