ylbtech-SQL Server: SQL Server-SQL 索引(Index) |
SQL 索引(Index)。
ylb:索引(Index)返回顶部 |
--================================ -- ylb:索引的创建与管理 -- 9:34 2011/12/15 --================================ use pubs go --1,创建索引 --P1:为图书表的书名添加索引 create index I_Titles_Title on titles(title) go --2,撤销索引 --2_1,方式一ver=2008 drop index I_Titles_Title on titles go --2_2,方式二ver<=2005 drop index titles.I_Titles_Title go