如何确定排序表中项目的顺序号
我的项目是C#并使用MS SQL Server 数据库上的 CastleProject ActiveRecord。
如果应用某些排序标准,我需要了解数据库中项目的订单号。
示例:我在某个表中有很多消息,其中消息有 ID、时间和文本。如果我按时间对消息进行排序,我想了解特定消息的编号。下次,我想在应用按文本排序时获取同一消息的订单号。
是否可以通过ActiveRecord方式实现或者仅通过SQL Server上的存储过程来实现?
(continued from Read N consequent items by ActiveRecord)
My project is C# and uses CastleProject ActiveRecord on MS SQL Server database.
I need to understand the order number of an item from a database, if some sorting criteria applied.
Example: I have a lot of messages in some table, where message has ID, time and text. I'd like to understand which number particular message will have, if I sort messages by time. Next time, I'd like to get order number of the same message when sort by text applied.
Is it possible to achieve with ActiveRecord means or only with stored procedures on SQL Server?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要使用 ROW_NUMBER() 函数。检查此链接:
http://www.singingeels.com/Articles/Pagination_In_SQL_Server_2005.aspx
它对于 SQL Server 2008 的工作原理相同,所以不用担心。
You need to use the ROW_NUMBER() function. Check this link:
http://www.singingeels.com/Articles/Pagination_In_SQL_Server_2005.aspx
It works the same for SQL Server 2008, so don't worry.