开发者

Sort numbers (and numbers+letters) with sqlite

开发者 https://www.devze.com 2023-02-15 05:16 出处:网络
I\'m trying to sort a VarChar field with Sqlite. The field can contain numbers or numbers+letters, but I need to sort in numerical order, like this:

I'm trying to sort a VarChar field with Sqlite.

The field can contain numbers or numbers+letters, but I need to sort in numerical order, like this:

1
1a
1b
5
5x
5y
10
10d
10e
10g1
11
11a
11b
100c
100f

Any ideas? I've been able to do this... it is close (but not quite) what I need:

Pad the start of the field with '00000', and then sort on the 1st five letters

开发者_Python百科


Easy

select col from tbl order by col*1, col


There's no easy way to do this with the built-in functions. Use sqlite3_create_collation (or the equivalent wrapper in your preferred programming language) to define a string comparison function that implements natural sort.

0

精彩评论

暂无评论...
验证码 换一张
取 消