我想知道如何使用MySQL订购数字和非数字值。
这是输出的内容。
1
10
1234
2
25
26
a
b
c
d
这就是我想要的。
1
2
10
25
26
1234
a
b
c
d
这是我的MySQL代码。
SELECT tags.*, COUNT(tag_id) as number_of_tags
FROM tags
INNER JOIN posts_tags ON tags.id = posts_tags.tag_id
GROUP BY tags.tag
ORDER BY tags.tag ASC