如何确定排序表中项目的顺序号

发布于 2024-09-18 17:25:32 字数 378 浏览 3 评论 0原文

(续通过ActiveRecord读取N个后续项目

我的项目是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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

债姬 2024-09-25 17:25:32

您需要使用 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文