mysql 自然排序
我有像 server(id,name,ip)
这样的表。当我尝试按名称对结果进行排序时,我得到:
srv1,srv10,srv11,srv2,srv6
但我需要像 srv1,srv2,srv6,srv10,srv11
这样的结果代码>
我知道的一个想法是,
ORDER BY LENGTH(name), name
但我的名称列长度不同,
我需要做什么?
I have table like server(id,name,ip)
. When I'm trying to sort results by name, I get:
srv1,srv10,srv11,srv2,srv6
but I need the results like srv1,srv2,srv6,srv10,srv11
One idea I know is
ORDER BY LENGTH(name), name
but I have different lengths in name column
What do I need to do?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你可以试试这个:
You could try this:
MySQL 中没有实现自然排序。您应该尝试不同的方法。在此示例中,我假设服务器名称始终具有相同的模板(即 srv###)。
正如我所说,这种方法非常具体,因为您假设前 3 个字符将被忽略。如果您更改模板,这可能会产生误导并且难以处理。
您可以选择向表中添加一列,我们将其称为
prefix
,您可以在其中设置服务器的前缀名称(在您的示例中,每个服务器的前缀名称将为srv
) )。然后您可以使用:获得更稳健的方法。
Natural sorting is not implemented in MySQL. You should try a different approach. In this example I assume that the server name has always the same template (i.e. srv###).
As I said, this approach is very specific, since you assume that the first 3 characters are to be ignored. This could be misleading and difficult to handle if you change the template.
You could chose to add a column to the table, let's call it
prefix
in which you set the prefix name for the server (in your example it will besrv
for each one). Then you could use:obtaining a more robust approach.