How do I LIMIT the number of rows in a DELETE with DB2?

后端 未结 9 584
醉梦人生
醉梦人生 2021-01-11 17:09

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

9条回答
  •  南笙
    南笙 (楼主)
    2021-01-11 17:48

    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
    )
    

提交回复
热议问题