怎么删除前十条数据我要做每删除10条记录提交一次,oracle里没有deletetop10这个方法吗?[解决办法]举个例子
怎么删除前十条数据
我要做每删除10条记录提交一次,oracle里没有delete top 10 这个方法吗?
[解决办法]
举个例子:
select r,e.* from (select rownum r,last_name,salary from (
select last_name,salary from employees order by nvl(salary,0) desc)) e
where r <11;
