order by 的一个小问题

select * from testtable order by  columna

如果这个column是number字段,他会按照数字大小排序 1, 2, 3, 12, 13

select * from testtable order by  lower(columna)

如果这个column仍然是number字段,他会按照字母顺序排序, 1, 2, 12, 13, 3...

posted @ 2011-10-27 21:28  lostyue  阅读(202)  评论(1编辑  收藏  举报