标签: sql sql-server
我的表有3000万行,并且每天都在增加,但现在只是简单的选择查询,如
Select top 10 * from table order by entrydate desc
要花8分钟以上的时间解决这个问题吗?
答案 0 :(得分:6)
我认为您需要一个索引:
create index idx_table_entrydate on table(entrydate);