作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如果我有结果
11 The street
9 The street
59 The street
常规的ORDER BY ASC
可以做到这一点
11 The street
59 The street
9 The street
如何通过 ASC
订购并让数字像这样计数
9 The street
11 The street
59 The street
最佳答案
请尝试:
select *
From tbl
order by cast(Left(Col, PatIndex('%[^0-9]%', Col)) as int)
对于MySql,请尝试:
select *
From tbl
order by convert(SUBSTRING_INDEX(Col, ' ', 1), UNSIGNED INTEGER)
关于mysql - SQL 按门牌号订购地址,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23339278/
我有一个字符串列表(包含门牌号)如下: List myList = new List { "11", "11a", "11 a", "11-1", "11a-1" }; myList.Sort(new
我是一名优秀的程序员,十分优秀!