没有索引和主键的话,应该是按插入的顺序排列SQL codeif object_id('tb') is not null drop table tb go create table tb(c int) insert tb values(3) insert tb values(14) insert tb values(5) insert tb values(60) insert tb values(1) insert tb values(4) select * from tb /* c ----------- 3 14 5 60 1 4 (6 row(s) affected) */ 。不然你就创建一个identity 或者加一个时间字段吧。。。。