I'm trying to extract data from a Progress 9.1D09 database. I understand that this isn't the latest version of Progress but upgrading isn't an option. The database is used by a dying program and I am moving the data to its successor.
One table has 162000 rows. I want to work with a small number of rows.
In SQL Server I would change my query to "select top 100 * from ...". In MySQL I would do "select * from ... limit 0,100".
Neither of these syntaxes work and googling for the right syntax has failed me so far.
How can I limit the number of rows in the source data using SQL?