Is there any way how to limit the number of returned records to a certain value? I have a table which holds millions of measurement data and timestamps. When I do a select for a certain time range, I may get back thousends of records and I only need to present the first 25 for a preview.
Functions like:
SELECT ... ... WHERE ROWNUM <= 25 (Oracle)
or
SELECT FIRST 10 * (Informix)
did not work with Paradox. My programming environment is Borland C++ Builder.
Many thanks for every hint!
Hermann
Functions like:
SELECT ... ... WHERE ROWNUM <= 25 (Oracle)
or
SELECT FIRST 10 * (Informix)
did not work with Paradox. My programming environment is Borland C++ Builder.
Many thanks for every hint!
Hermann