/ Published in: SQL
Delete a defined number of rows from a db2 database table
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
DELETE FROM <table> WHERE <column> IN ( SELECT <column> FROM <table> WHERE <condition> FETCH FIRST <N> ROWS ONLY )