缺少查询的参数,可以修改为:
select top 10 * from tablename
还可以按照某个字段排序的前几个:
select top 10 * from tablename order by 字段名
select * from tablename where 你的主键名称<=10
select top10 字段1,字段2,....from tablename
把字段名称列出来
select top10 * from tablename 汗!
select * from table limit 10