程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> MYSQL數據庫 >> MySQL綜合教程 >> mysql判斷索引存在時刪除索引的方法

mysql判斷索引存在時刪除索引的方法

編輯:MySQL綜合教程

mysql判斷索引存在時刪除索引的方法   mysql的drop index語句不支持if exists條件,在sql中先刪除索引, 再創建索引,如果對於新建的數據庫,庫中沒有該索引,就會報錯, 導致後面的sql不再執行。   www.2cto.com   因此需要使用存儲過程來判斷索引是否存在,如果存在則刪除。 sql代碼如下:   Sql代碼   DROP PROCEDURE IF EXISTS del_idx;   create procedure del_idx(IN p_tablename varchar(200), IN p_idxname VARCHAR(200))   begin   DECLARE str VARCHAR(250);     set @str=concat(' drop index ',p_idxname,' on ',p_tablename);           select count(*) into @cnt from information_schema.statistics where table_name=p_tablename and index_name=p_idxname ;     if @cnt >0 then        PREPARE stmt FROM @str;       EXECUTE stmt ;     end if;      end ;   call del_idx('table_name','index_name');   ALTER TABLE table_name ADD INDEX index_name (column1, column2);  

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved