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
How is this query?
delete from table D where exists ( select * from ( select * from table M fetch first 10 rows only ) as M where M.object_id = D.object_id )