比如一个表中有10万条数据,现在执行select * from table花费时间比如是10秒。 那么执行 1 select top 10 from talbe 2 select top 10 from table order by xx 3 select * from table where name = 'xxx' --符合条件的记录很少 4 select * from talbe where name like '%xxx%' --符合条件的记录很少 以上4的估计各需要多少时间完成呢? 期待高手解答,非常感谢