DB2 select * from (select rownumber() over(order by <colName>) as row_num, <colName2> from <table name>) as <alias name> where row_num < N+1 with ur Oracle select * from (select rowid as row_num, <colName2> from <table name>) as <alias name> where row_num < N+1 Blog this on Blogger Subscribe to the comments for this post? Share [...]
↧