SQL查询与优化
實驗案例一:比較不同查詢語句使用索引的情況<?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /> 在Adventrueworks數據庫的production.workorder表中分別按照要求創建相應的索引,然后執行不同的查詢語句,比較使用索引的狀態,并提供相應的截圖和步驟,在實驗過程中,需要同步完成題目中所提出的問題。 推薦步驟: (1)??? 創建非聚集、非唯一值索引 IX_startdate(startdate) IX_workorder_productid(productid) (2)創建索引IX_startdate(startdate,enddate),請問有什么現象,為什么? (3)創建索引IX_workorder_productid(productid)請問有什么現象,為什么? 將會出現如下現象,因為已經有索引IX_startdate,重名了。 (4)創建索引IX_workorder_productid2(productid) ? (5)截圖select*from production.workorder where productid=732的執行計劃,寫明該查詢語句使用了哪個索引? ? 由下圖可以看出該查詢語句使用了productid 6)截圖select*from production.workorder where productid>732的執行計劃,寫明該查詢語句使用了哪個索引?為什么與步驟5執行的結果不同? 由下圖可以看出,執行該語句將使用索引掃描,不再使用索引查詢,因為>屬于運算符,查詢部會使用索引 (7)使用索引提示,強制select*from production.workorder where productid=732使用索引IX_workorder_productid2,執行計劃是什么樣的? 由下圖可以看出,執行該語句后將使用IX_workorder_productid2索引 (8)禁止索引IX_workorder_productid,查看select*from production.workorder where productid=732的執行計劃,寫明該查詢語句使用了哪個索引? <?xml:namespace prefix = v ns = "urn:schemas-microsoft-com:vml" /> 由下圖可以看出,執行該語句后將使用IX_workorder-productid索引 (9)禁止索引XI_workorder_productid,并且使用索引提示,強制查詢select*from production.workorder where productid=732,使用索引IX_workorder_productid,請問有什么現象? 由下圖看出,執行該語句后,將使用IX_workorder_productid2索引 實驗案例二:分析查詢語句使用索引的情況 為Production.WorkOrder表創建索引,索引名分別為: >IX_WorkOrder_ProductIDStartdateEnddate(ProductID,StartDate,EndDate) >XI_Workorder_StartdateEnddate(Startdate,Enddate) 執行查詢語句,分析各個查詢語句的使用索引情況,并說明為什么(要求有執行計劃的截圖) >查詢1.select*from production.workorder Where startdate>cast(‘<?xml:namespace prefix = st1 ns = "urn:schemas-microsoft-com:office:smarttags" />2001-07-12’ as datetime) And startdate<cast(‘2001-07-14’ as datetime) >查詢2.select*from production.workorder Where startdate>cast(‘2001-07-12’ as datetime) And startdate<cast(‘2001-07-14’ as datetime) And productid=717 >查詢3.select*from production.workorder Where startdate>cast(‘2001-07-12’ as datetime) And startdate<cast(‘2001-07-14’ as datetime) And productid>717 推薦步驟: (1)??? 首先使用smss為數據庫中的production.workorder表創建索引 (2)??? 然后在smss的任務欄上啟用預計的執行計劃 (3)??? 分別在查詢分析器窗口中輸入上面提供的語句并執行 (4)??? 通過“執行計劃”窗口分別查看索引的使用情況 (5)??? 將三組語句的執行結果進行截圖并進行比較 (6)??? 提交截圖、執行過程和分析結果 實驗案例三:分析創建索引表后查詢計劃的變化 執行下面的語句時,因為where的條件語句應用到了運算符,所以不會引用索引,將執行索引掃描 將productID移動到最上面,因為索引首先執行的是where后的條件語句,因此就使用了startdate索引 ? ?
如果將startdate上移到最上面,那么在執行完where后的條件語句,將執行select后面的語句,因此將會使用XI_Work Order_StartdateEnddateProductID索引:
轉載于:https://blog.51cto.com/caohongjiang/314702
總結
- 上一篇: 有道编程的界面做的也太粗燥了吧!
- 下一篇: 【转】程序员的素养