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
delete from table where id in (select id from table where info = '1' order by id fetch first 1 rows only)