How do you perform a
Select top N * from as400table
type query against an as400/db2 database
How do you perform a
Select top N * from as400table
type query against an as400/db2 database
Select col1,col2
from
as400table
where col1='filter'
order by col1
fetch first N row only