View Single Post

   
  #2 (permalink)  
Old 02-27-2008, 06:20 AM
graham_martin
 
Posts: n/a
Default Re: how to specify the number of records to fetch

to get the first 10 rows......

select column1 from table1 fetch first 10 rows only

to get the top 10 rows........

select column1 from table1 order by column1 desc fetch first 10 rows
only

Graham Martin
http://www.ibm.com/software/data/db2/migration/

Reply With Quote