select top n * from tablen为 你要从地一个取的行数select top n * from table order by 列名(基本上任意) desc这个就是从 后面往前取要是去中间的 比如 20到30的select top 10 from table where 列名 not in(select top 20 列名 from table)这个就是先取出前20 在去不在前20行里的余下的 所有数据的前10行 就是咱们要的20到30行 其他的 你自己研究吧 基本上都是这样
select * from 表名 或者select top 12 * from 表名 where 条件这个是选择符合条件的前12条,12可以换成你想要显示的条数当然where(条件)可以不要有疑问再问,qq在我的空间里有