Does anyone know how to access the first 10 rows of a table in a progress 9d database??
select * from table_name where rownum <= 10 does not work, I get the error that this feature is not yet supported, but is there any other way to accomplish this?
You would need to issue your SELECT, then iterate through the first ten rows of the result set in whatever language you are calling the SQL from (eg. VB).
I don't use SQL, so haven't got an example, maybe someone else has.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.