Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically.
删除索引会将索引从数据库中删除。
可以使用 Sybase Central 或 Interactive SQL 执行此任务。
在 Sybase Central 中,您可在使用所选数据库时执行此任务。
连接到 UltraLite 数据库。
在左窗格中,双击 [索引]。
右击索引,然后单击 [删除]。
单击 [是]。
在 Interactive SQL 中,删除 (Delete) 索引也称作将其删除 (Drop)。您可以使用 DROP INDEX 语句执行此任务。
连接到数据库。
执行 DROP INDEX 语句。
例如,以下语句会从数据库中删除 EmployeeNames 索引:
DROP INDEX EmployeeNames;