| Author |
Generalising Rownum for all DataBases
|
sreenath reddy
Ranch Hand
Joined: Sep 21, 2003
Posts: 415
|
|
Hi I have as issue with this rownum.This is supported in different forms in different databases like top in mssql ,limit in mysql and all..i want to genaralise this independent of the type of database because i want to run the query as i wont be knowing the type of the DB used by my user. can anyone suggest a solution for this ? is there anyway of generating a series of numbers with the query by calling the function in that query repetitively ??? Regards Sreenath
|
 |
Tom Blough
Ranch Hand
Joined: Jul 31, 2003
Posts: 263
|
|
The only way I can think of to be independent of specific implementations of rownum, it to implement your own ranking as a field in the data: [code] SELECT a.vendor_no, a.total, count(*) AS rank FROM qryTopSuppliers AS a, qryTopSuppliers AS b WHERE a.total <= b.total GROUP BY a.vendor_no, a.total ORDER BY 3; [code] rank will now contain a integer value you can use for your own purposes.
|
Tom Blough<br /> <blockquote><font size="1" face="Verdana, Arial">quote:</font><hr>Cum catapultae proscriptae erunt tum soli proscripti catapultas habebunt.<hr></blockquote>
|
 |
 |
|
|
subject: Generalising Rownum for all DataBases
|
|
|