我遇到了像
这样的事情我想从包含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#代码)
由于
答案 0 :(得分:1)
如果您要查找上述完全相同的结果,请尝试查询
select id, priority, txt from table order by priority ASC, id DESC