How to limit result set size for arbitrary query in Ingres?
In Oracle, the number of rows returned in an arbitrary query can be limited by filtering on the "virtual" rownum column. Consider the following example, which will return, at most, 10 rows. SELECT * FROM all_tables WHERE rownum <= 10 Is there a simple, generic way to do something similar in Ingres? Blatantly changing my answer. "Limit 10" works for MySql and others, Ingres uses Select First 10 * from myTable Ref select * from myTable limit 10 does not work. Have discovered one possible solution: TIDs are "tuple identifiers" or row addresses. The TID contains the page number and the index of