Product:
DB2 database
Issue:
How list only a few rows of data?
Solution:
In your SQL tool, enter something like this:
SELECT * FROM schemaname.tablename WHERE id = 1 FETCH FIRST 100 ROWS ONLY
More Information:
https://www.razorsql.com/articles/db2_limit_query.html
https://www.dbvis.com/thetable/sql-limit-clause-complete-handbook/