select name from folders order by name
返回以下结果:
alphanumeric a test test 20 test 19 test 1 test 10
但我预计:
a test alphanumeric test 1 test 10 test 19 test 20
这有什么不对?
select name from folders order by name
返回以下结果:
alphanumeric a test test 20 test 19 test 1 test 10
但我预计:
a test alphanumeric test 1 test 10 test 19 test 20
这有什么不对?
SELECT * FROM sort_test ORDER BY SUBSTRING(text FROM '^(.*?)( \\d+)?$'),COALESCE(SUBSTRING(text FROM ' (\\d+)$')::INTEGER,0);
这将对列文本进行排序,首先是所有字符,可选地排除结尾空格后跟数字,然后排除那些可选数字.
在我的测试中工作得很好.
Update使用简单的合并(duh)修复了仅字符串排序.