如果你表中有id的话就这么用,但是id要是数字型SELECT top 100 * from 表名 order by rnd(id) 如果你要引用一个非数字型字段SELECT top 100 * from 表名 order by rnd(len(字段名))