I want to add a security on a sensitive table when I delete lines with an SQL request on a DB2 table.
I want to mimic the way MySQL allows you to limit the numbers o
Just select a statement, and put the statement inside the delete query:
delete from ( select from table WHERE info = '1' order by id fetch first 25000 rows only )