Datalist - 以相反顺序显示信息
我有一个数据列表,可以完美地显示 SQL 表中的信息。有没有办法以相反的顺序显示信息?
示例:
Person1 人物2 相反
,我想要:;
人物3 人物2 人员1
I have a datalist that shows information from a SQL table perfectly. Is there a way to show the information in reverse order?
Example:
Person1
Person2
Person3
Instead I would like:;
Person3
Person2
Person1
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
修改您的 SQL 查询以使用
ORDER BY;降序
。Modify your SQL query to use
ORDER BY <name> DESC
.请参阅 SELECT 的 DESCENDING 选项
see the DESCENDING option of SELECT
如果您不想在服务器端执行此操作,您还可以使用
Reverse
扩展方法:或更简洁但不太明显:
If you don't want to do it server-side you could also use the
Reverse
extension method:or more succinctly, but less obvious: