选择全部并给出随机输出(随机排序输出)
我有一个看起来像这样的表,
ID Name City
-------------
0 asd sda
1 hrs gsh
2 ghd 0
3 hsa 0
.
.
我怎样才能以随机顺序返回 city != '0',然后以随机顺序返回 city = '0' ?
I have a table looking something like this
ID Name City
-------------
0 asd sda
1 hrs gsh
2 ghd 0
3 hsa 0
.
.
How could I return city != '0' in random order and then city = '0' in random order?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
对于 SQL Server(RAND 为 SQL Server 中的所有行提供相同值)
For SQL Server (RAND gives same value for all rows in SQL Server)
假设您的 DBMS 支持 RAND 函数,该函数为结果集中的每一行返回不同的随机数:
Assuming your DBMS supports a RAND function that returns a different random number for each row in your result set: