比如一个表有三条记录。
ab
abc
a
d
....我现在
select * from table_name where column_name like 'a%'
显示结果可能是
a
ab
abc
除了排序,有没有别的办法让它按照原表顺序显示
ab
abc
a
?
谢谢。