I've been looking for hours on how to return a limited set of rows similar to SELECT TOP 100 * FROM CUSTOMER
or SELECT * FROM CUSTOMER LIMIT 100
or SELECT * FROM CUSTOMER WHERE ROWNUM <= 100
and for the life of me I cannot find a way to do this with this particular database.
The database version is 10.1.46 and I've found documentation for a later version of SQLBase that says the Limit keyword is what should be used, but nothing has worked when attempting to limit the amount of rows returned using isql. SQL Prepare errors get thrown. I'm at a loss as to how to do this and I'm beginning to think the database just doesn't support limiting the amount of rows returned.
I'm hoping someone knows how I can limit the number of records returned.