gpt4 book ai didi

SQL Server 添加索引而不删除表

转载 作者:行者123 更新时间:2023-12-02 06:35:08 27 4
gpt4 key购买 nike

我需要向已经有主键索引的表添加索引。新索引将位于另一列上。

我对此表没有足够的权限,无法通过右键单击并选择“将表脚本编写为”来选择“更改”。

有没有办法在不影响任何现有数据的情况下向列添加索引?

myTable:

  • id -- int -----> this is an identity column, set as PK and indexable
  • bookid ---> varchar(20) ----> this is the column that needs index created

最佳答案

您可以执行如下创建索引脚本,这与 Igor 提到的类似

CREATE NONCLUSTERED INDEX IX_YourTable ON dbo.YourTable (bookid)

关于SQL Server 添加索引而不删除表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39710431/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com