首页 > 代码库 > SqlServer性能优化索引(五)
SqlServer性能优化索引(五)
导入表结构:
select * into ProductCategory from AdventureWorksDW2014.dbo.DimProductCategory select * into Product from AdventureWorksDW2014.dbo.DimProduct
开启磁盘io:
set statistics io on select EnglishProductName,StandardCost,Color,Size,Weight from Product where size>‘M‘--0.189 io:251 set statistics io off
非聚簇索引:
创建的语句:
create nonclustered index nc_product_size on product(size)
再次执行上面的查询代码(提高了三倍):
set statistics io on select EnglishProductName,StandardCost,Color,Size,Weight from Product where size>‘M‘ --0.054 io:19 set statistics io off
建立覆盖索引:
create nonclustered index nc_product_size1 on product(size) include(EnglishProductName, StandardCost,Color,Weight)
再次执行上述语句:
set statistics io on select EnglishProductName,StandardCost,Color,Size,Weight from Product where size>‘M‘ --0.003 io:2 set statistics io off
数据库会自动选择索引:
SqlServer性能优化索引(五)
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。