0

我被一些事情困住了

我想从具有 id、priority 和 txt 等字段的表中检索记录。

id         priority    txt
5            1          Hello how are you? (recently added with the 1 priority)
3            1          I am fine
2            1          where are from 
4            2          Yes (recently added with the 2 priority)
1            2          No

我想在网格视图中显示为(如果优先级与具有相同优先级的下一个相同,则最近添加的记录应该在顶部)我不想为此使用日期时间列。是否可以?通过(Sql 查询)或(C# 代码)

谢谢

4

1 回答 1

1

如果您正在寻找与上述完全相同的结果,请尝试查询

select id, priority, txt from table order by priority ASC, id DESC
于 2012-05-03T10:55:10.720 回答